I see lots of default windows Apps such as Camera, Microsoft Store, Cortana missing on my Windows 10 Pro PC. After searching on internet I found the following command fixes it.
Get-AppXPackage -AllUsers | Foreach {Add-AppxPackage -DisableDevelopmentMode -Register “$($_.InstallLocation)\AppXManifest.xml”}
But when I tried to run it, it throws error
Add-AppxPackage : Deployment failed with HRESULT: 0x80073D02, The package could not be installed because resources it modifies are currently in use. error 0x80073D02: Unable to install because the following apps need to be closed MicrosoftWindows.Client.CBS_120.2212.3920.0_x64__cw5n1h2txyewy. NOTE: For additional information, look for [ActivityId] 37fe793e-0191-0005-7386-fe379101d801 in the Event Log or use the command line Get-AppPackageLog -ActivityID 37fe793e-0191-0005-7386-fe379101d801
what is this file MicrosoftWindows.Client.CBS_120.2212.3920.0_x64__cw5n1h2txyewy and how would I disable/stop it.
I don't want to reset the PC as will waster hours of my time getting everything back.
Thanks X