Microsoft has confirmed serious problems in Windows 11 version 24H2 after installing monthly updates starting from KB5062553 in July 2025.
Users face crashes and failures in core features like the Start menu, Taskbar, File Explorer, and System Settings, especially on first logons or in virtual desktop setups.
The company points to the delayed registration of XAML packages, vital for user interface elements.
This affects both standard PCs and enterprise environments, such as VDI, causing significant disruptions.
The bug hits right after updates provision new machines or trigger user sessions in non-persistent systems, where apps reinstall each time.
Shell processes fail to load, leaving users without basic navigation tools. No permanent fix exists yet, but Microsoft promises updates soon.
Symptoms and Technical Impact
Key symptoms include Explorer.exe crashes, missing Taskbar despite Explorer running, and StartMenuExperienceHost failures that block the Start menu with error messages.
System Settings often fails silently, while ShellHost.exe and ImmersiveShell crash during XAML view initialization.
These issues cascade because apps depend on XAML for rendering modern UI, leading to unusable desktops in VDI or fresh setups.
Workarounds and Resolution Outlook
Users can manually register missing packages via elevated PowerShell:
Add-AppxPackage -Register -Path 'C:\Windows\SystemApps\MicrosoftWindows.Client.CBS_cw5n1h2txyewy\appxmanifest.xml' -DisableDevelopmentMode
Add-AppxPackage -Register -Path 'C:\Windows\SystemApps\Microsoft.UI.Xaml.CBS_8wekyb3d8bbwe\appxmanifest.xml' -DisableDevelopmentMode
Add-AppxPackage -Register -Path 'C:\Windows\SystemApps\MicrosoftWindows.Client.Core_cw5n1h2txyewy\appxmanifest.xml' -DisableDevelopmentMode
Restart SiHost.exe afterward. For VDI, deploy this as a synchronous logon script in a batch file to block Explorer until registration completes.
@echo off
powershell.exe -ExecutionPolicy Bypass -Command "Add-AppxPackage -Register -Path 'C:\Windows\SystemApps\MicrosoftWindows.Client.CBS_cw5n1h2txyewy\appxmanifest.xml' -DisableDevelopmentMode"
powershell.exe -ExecutionPolicy Bypass -Command "Add-AppxPackage -Register -Path 'C:\Windows\SystemApps\Microsoft.UI.Xaml.CBS_8wekyb3d8bbwe\appxmanifest.xml' -DisableDevelopmentMode"
powershell.exe -ExecutionPolicy Bypass -Command "Add-AppxPackage -Register -Path 'C:\Windows\SystemApps\MicrosoftWindows.Client.Core_cw5n1h2txyewy\appxmanifest.xml' -DisableDevelopmentMode"
IT admins should monitor for the fix in future cumulatives, as the problem persists across updates post-July 2025. Reports surged in late November 2025, highlighting enterprise risks.





