Skip to main content

Deploy Claude Desktop for Windows

Updated over 2 weeks ago

Administrators on Team or Enterprise plans can deploy Claude Desktop automatically across their organization to manage installations and updates centrally. We offer MSIX packages for Windows deployments via Microsoft Intune, SCCM, Group Policy, or PowerShell, enabling secure, scalable distribution.

Installation requirements

  • For individual installations with full feature support including Cowork, administrator privileges are required. Users will see a Windows UAC prompt during installation. Users without admin access can still install Claude, but Cowork will not be available. Access the user-friendly installer from our download page.

  • For silent deployment without user interaction, use the MSIX package directly with your enterprise management tool.

Cowork requirements

Claude Desktop for Windows requires the Virtual Machine Platform to use Cowork. You can automate installation of this feature via most endpoint management solutions, but you may also run the following command to install it manually:

Enable-WindowsOptionalFeature -Online -FeatureName VirtualMachinePlatform -All -NoRestart

Download

Installation commands

For manual installation on individual machines, use the following PowerShell commands:

Install for single user

```powershell
Add-AppxPackage -Path "Claude.msix"
```

For more details, see Microsoft's Add-AppxPackage documentation.

Install for all users (provisions machine-wide)

```powershell
Add-AppxProvisionedPackage -Online -PackagePath "Claude.msix" -SkipLicense -Regions "all"
```

For more details, see Microsoft's Add-AppxProvisionedPackage documentation.

Deploy via MDM

Claude Desktop can be deployed through various enterprise software distribution services. Choose the method that aligns with your organization's existing infrastructure:

Configuration

To configure Claude Desktop settings such as auto-updates, extensions, and MCP servers, see Enterprise configuration.

Troubleshooting

MSIX package not working with AppLocker?

By default, packaged apps may be restricted by AppLocker policies. Ensure your AppLocker rules allow MSIX packages, or add Claude Desktop to your allowed applications list. Consult your organization's security policies before making changes.

Did this answer your question?