look
How fix C:\WINDOWS\SystemApps\MicrosoftWindows.Client.CBS_cw5n1h2txyewy\CrossDeviceResume.exe The application has not been provisioned
I can not resolve C:\WINDOWS\SystemApps\MicrosoftWindows.Client.CBS_cw5n1h2txyewy\CrossDeviceResume.exe The application has not been provisioned
Windows for business | Windows 365 Business
2 answers
Sort by: Most helpful
-
Domic Vo 19,735 Reputation points Independent Advisor
2026-03-06T23:31:00.4266667+00:00 Hello,
The error you are seeing with CrossDeviceResume.exe under C:\WINDOWS\SystemApps\MicrosoftWindows.Client.CBS_cw5n1h2txyewy is not related to Windows for Business or Windows 365 Enterprise. This is a local Windows client issue tied to system provisioning of inbox apps.
That executable is part of the Connected Devices Platform / Cross‑Device Experience Host package, which handles features like “Continue on PC” and cross‑device resume. When Windows reports “The application has not been provisioned,” it means the system app package is missing or corrupted in the provisioning store. This typically happens after a feature update or when system apps are removed with tools like DISM or third‑party debloat scripts.
To resolve it, you need to re‑provision the package. Open PowerShell as Administrator and run:
Get-AppxPackage -allusers MicrosoftWindows.Client.CBS | Foreach {Add-AppxPackage -DisableDevelopmentMode -Register "$($_.InstallLocation)\AppXManifest.xml"}
This command re‑registers the app package for all users. If the package is missing entirely, you may need to restore it from the Windows image using DISM
DISM /Online /Add-Capability /CapabilityName:Microsoft.Windows.Client.CBS~~~~0.0.1.0
If DISM cannot find the capability, the only supported way to restore it is to perform a repair install (in‑place upgrade) of Windows using the same build media. That will re‑provision all inbox apps, including CrossDeviceResume.exe.
I hope you've found something useful here. If it helps you get more insight into the issue, it's appreciated to accept the answer. Should you have more questions, feel free to leave a message. Have a nice day!
Domic Vo.