Overview
This article explains why the Claude Desktop application installer fails on Windows 11/10 Home edition with error HRESULT 0x80073CFF, and provides the registry-based workaround to resolve it.
Purpose
This article helps administrators and end users:
- Understand why the Claude Desktop .exe installer, which internally uses an .msix-based installation mechanism, gets blocked on Windows Home edition
- Apply a manual workaround using an elevated Command Prompt
- Successfully complete installation without needing Windows Pro/Enterprise-only management tools
Scope
- Platform: Windows 10 / Windows 11 Home edition
- Application: Claude Desktop (.exe installer that internally uses an .msix-based installation mechanism)
- Applies when installing manually (outside of SureMDM silent deployment)
Prerequisites
Before applying the workaround, ensure:
- The Claude Desktop installer has been downloaded from the official claude.com website
- You have local administrator credentials on the device
- The device is running Windows 10/11 Home edition
Issue
When installing Claude Desktop manually on a Windows Home edition device (i.e., without SureMDM silent deployment), the following error is displayed:
—————————
Claude Setup
—————————
Installation failed: AddPackage failed: AddPackage failed with HRESULT 0x80073CFF
Please share this log with us.
The log file will be opened in Explorer.
—————————
OK
—————————
Root Cause
The Claude Desktop application is distributed as an .exe file, but internally this .exe uses an .msix-based installation mechanism to install the app. Since this .msix package is not distributed through the official Microsoft Store, Windows blocks its installation by default unless sideloading of trusted apps is explicitly allowed.
This behavior is governed by the AllowAllTrustedApps setting, which can normally be configured via:
- Group Policy (GPO) – Configure PCs for sideloading apps
- Windows CSP – ApplicationManagement/AllowAllTrustedApps
Both of these management paths are supported only on Windows Pro or Enterprise editions. Windows Home edition does not support GPO or CSP-based configuration of this setting, which is why below Resolution steps need to be carried out.
Resolution Steps
Since GPO/CSP is unavailable on Home edition, the workaround is to toggle the AllowAllTrustedApps registry value manually.
1: Open Elevated Command Prompt
- Click Start, type cmd.
- Right-click Command Prompt and select Run as administrator.
2: Enable AllowAllTrustedApps via Registry
Run the following command:
reg add “HKLM\SOFTWARE\Policies\Microsoft\Windows\Appx” /v AllowAllTrustedApps /t REG_DWORD /d 1
This sets AllowAllTrustedApps to 1, permitting sideloaded/trusted .msix packages such as Claude Desktop to install.
3: Retry the Claude Desktop Installation
- Re-run the Claude Desktop installer (.exe) downloaded from claude.com.
- The installation should now proceed without the HRESULT 0x80073CFF error.
4: Revert the Registry Setting (Optional)
For security hygiene, once Claude Desktop is successfully installed, you can revert the value back to its original state:
reg add “HKLM\SOFTWARE\Policies\Microsoft\Windows\Appx” /v AllowAllTrustedApps /t REG_DWORD /d 0
Note: Reverting this setting does not affect apps already installed; it only re-restricts future sideloaded app installs.
Validation Steps
After applying the workaround:
- Confirm the registry value was set:
reg query “HKLM\SOFTWARE\Policies\Microsoft\Windows\Appx” /v AllowAllTrustedApps
- Re-launch the Claude Desktop installer.
- Confirm installation completes without the HRESULT 0x80073CFF error dialog.
- Launch Claude Desktop and confirm it opens successfully.
Validation Result
Observed behavior after applying the workaround:
- The AddPackage failed with HRESULT 0x80073CFF error no longer occurs.
- Claude Desktop installs and launches successfully on Windows Home edition.
- No impact observed on other installed Store or sideloaded applications.
Notes
- This issue is specific to manual installs on Windows Home edition. Devices managed via SureMDM do not hit this error because silent installs performed through SureMDM’s Install Application job handle package trust differently.
- HRESULT 0x80073CFF generally corresponds to a user/policy-level block on installing the requested package (sideloading not permitted).
- Home edition lacks gpedit.msc and CSP/MDM policy support, so the registry method is the only available workaround for this edition.
- Always download the Claude Desktop installer only from the official claude.com website.
Related: Silent Deployment via SureMDM
For managed/enterprise rollout, this issue can be avoided entirely by deploying Claude Desktop silently via SureMDM:
- Download the lightweight .exe installer from the claude.com website.
- In the SureMDM console, go to the Install Application job for Windows.
- Upload the Claude .exe and set the Install Switch to /S.
- Deploy the job to the target device(s).
The application installs silently without encountering the HRESULT 0x80073CFF error.
Conclusion
In conclusion, the HRESULT 0x80073CFF error when installing Claude Desktop on Windows Home edition occurs because the app’s .msix package requires the AllowAllTrustedApps setting to be enabled, which is normally managed via GPO or CSP, both unsupported on Home edition. Manually setting the registry value works around this limitation, allowing the installation to complete successfully. For managed environments, deploying via SureMDM’s Install Application job avoids this issue altogether through silent installation.
Need more help? Here’s how to get help from our experts.