[BUG] Claude Desktop ARM64 fails on Windows 11 Build 26200 — MSIX MaxVersionTested 22621 mismatch causes DependencyIssue and windowless launch
Preflight Checklist
- [x] I have searched existing issues and this hasn't been reported yet
- [x] This is a single bug report (please file separate reports for different bugs)
- [x] I am using the latest version of Claude Code
What's Wrong?
Preflight Checklist
- [x] I have searched existing issues
- [x] This is a single bug report
- [x] I am using the latest version of Claude Desktop
What's Wrong?
Claude Desktop installs successfully on Windows 11 ARM64 Build 26200 (25H2), but the MSIX manifest declares MaxVersionTested 10.0.22621.0, which is older than the host OS. This causes Windows to flag the package as DependencyIssue after install. Even after force-re-registering and clearing the DependencyIssue flag, the app launches background processes but never renders a window.
This appears to affect every Snapdragon device running Windows 11 24H2 / 25H2. Multiple closed-as-invalid reports describe the same symptom (#50875, #28779, #25929, #28184). Closing them as "not related to Claude Code" loses the diagnostic trail.
Filing as a fresh issue with area:desktop since Claude Desktop bugs now appear to be in scope for this repo.
Environment
- Device: Asus Vivobook (Snapdragon X Elite)
- OS: Windows 11 Home, Build 10.0.26200 (25H2)
- Architecture: ARM64
- Claude Desktop version: 1.5354.0.0 (ARM64, SignatureKind: Developer)
- Display scale: 200% (192 DPI)
Root Cause Evidence
Direct manifest inspection of the installed package:
PS> (Get-AppxPackageManifest -Package "Claude_1.5354.0.0_arm64__pzs8sxrjxfjjc").Package.Dependencies.TargetDeviceFamily
Name MinVersion MaxVersionTested
---- ---------- ----------------
Windows.Desktop 10.0.18362.0 10.0.22621.0
Host OS is 10.0.26200, which exceeds MaxVersionTested 10.0.22621.0 by ~3,500 builds. This triggers Windows AppX deployment to register the package with Status: DependencyIssue.
Steps to Reproduce
- On a Snapdragon X Elite device running Windows 11 Build 26200, download Claude Desktop ARM64 installer from claude.com/download
- Run the installer (with or without admin elevation)
- Installer reports success:
MSIX installation succeededand=== Claude Setup completed successfully === - Run
Get-AppxPackage -Name "*Claude*"and observeStatus: DependencyIssue - Launch from Start menu, explorer.exe shell:AppsFolder, or direct .exe path
- Background processes spawn (visible in Task Manager:
Claudeparent withcowork-svcchild) - No window ever renders
What Should Happen
Workarounds Attempted
- Force re-register from manifest clears
DependencyIssuebut does NOT fix windowless launch:
Add-AppxPackage -Register "C:\Program Files\WindowsApps\Claude_1.5354.0.0_arm64__pzs8sxrjxfjjc\AppxManifest.xml" -ForceApplicationShutdown
- Clean nuke and reinstall via direct MSIX with version bypass also reports
Status: Okbut window still does not render:
Get-AppxPackage -Name "*Claude*" -AllUsers | Remove-AppxPackage -AllUsers
sc.exe delete CoworkVMService
Remove-Item "$env:LOCALAPPDATA\AnthropicClaude" -Recurse -Force
Remove-Item "$env:APPDATA\Claude" -Recurse -Force
Add-AppxPackage -Path "Claude-latest.msix" -ForceApplicationShutdown -ForceUpdateFromAnyVersion
- Wiped
LocalState, reset window position registry, launched from multiple paths (Start, explorer shell:AppsFolder, direct claude.exe). Same result every time.
Suggested Fixes
- Bump
MaxVersionTestedin the MSIX manifest to10.0.26200.0or higher. This alone would clear the false DependencyIssue flag for every Snapdragon-on-25H2 user and make further triage cleaner.
- Investigate Electron
BrowserWindowcreation on ARM64 Build 26200. Pattern across multiple reports: VM service starts, child processes connect, signatures verify, but the main window never paints. Likely an interaction between Electron's compositor and the WDDM driver path on Snapdragon.
- Add an installer warning when the host OS exceeds
MaxVersionTested, instead of silently registering the package with DependencyIssue.
- Reopen or cross-reference the previously closed reports (#50875, #28779, #25929, #28184). They were closed as "not related to Claude Code" but contain valuable diagnostic data for the desktop app on ARM64.
Logs Available
Full installer log (%LOCALAPPDATA%\Temp\ClaudeSetup.log), AppxLog entries, and PowerShell diagnostic output available on request.
Claude Code Version
Claude Desktop 1.5354.0.0 (ARM64)
Platform
Anthropic API
Operating System
Windows
What Should Happen?
App should render its main window on launch.
Error Messages/Logs
Steps to Reproduce
- On a Snapdragon X Elite device running Windows 11 Build 26200, download Claude Desktop ARM64 installer from claude.com/download
- Run the installer (with or without admin elevation)
- Installer reports success:
MSIX installation succeededand=== Claude Setup completed successfully === - Run
Get-AppxPackage -Name "*Claude*"and observeStatus: DependencyIssue - Launch from Start menu, explorer.exe shell:AppsFolder, or direct .exe path
- Background processes spawn (visible in Task Manager:
Claudeparent withcowork-svcchild) - No window ever renders
Claude Model
None
Is this a regression?
Yes, this worked in a previous version
Last Working Version
_No response_
Claude Code Version
n/a
Platform
Anthropic API
Operating System
macOS
Terminal/Shell
Terminal.app (macOS)
Additional Information
_No response_
This issue has 3 comments on GitHub. Read the full discussion on GitHub ↗