My Metro Apps are not loading. They return:
This App can't run
Using this command in Powershell:
powershell -ExecutionPolicy Unrestricted Add-AppxPackage -DisableDevelopmentMode -Register $Env:SystemRoot\ImmersiveControlPanel\AppxManifest.xml
Returns:
Add-AppxPackage : Deployment failed with HRESULT: 0x80073CF6, Package could not be registered.
error 0xC0020017: windows.licensing failed to start WSService. Try again and contact the package publisher if the
problem persists.
NOTE: For additional information, look for [ActivityId] 8609ca17-4097-0001-4bca-09869740d001 in the Event Log or use
the command line Get-AppxLog -ActivityID 8609ca17-4097-0001-4bca-09869740d001
At line:1 char:1
+ Add-AppxPackage -DisableDevelopmentMode -Register C:\WINDOWS\ImmersiveControlPan ...
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+ CategoryInfo : WriteError: (C:\WINDOWS\Imme...ppxManifest.xml:String) [Add-AppxPackage], IOException
+ FullyQualifiedErrorId : DeploymentError,Microsoft.Windows.Appx.PackageManager.Commands.AddAppxPackageCommand
Wsservice appears stopped with Startup type set to Manual.
Atempting a restart returns:
Windows could not start the Windows Store Service (WSService) service on Local Computer.
Error 1083: The executable program that this service is configured to run in does not implement the service.
What's happening?
Could you try the following
powershell -ExecutionPolicy Unrestricted Start-Service WSService & powershell -ExecutionPolicy Unrestricted Add-AppxPackage -DisableDevelopmentMode -Register $Env:SystemRoot\ImmersiveControlPanel\AppxManifest.xml
If that fails try calling WSService before starting the service
C:\Windows\System32\svchost.exe -k LocalServiceAndNoImpersonation & powershell -ExecutionPolicy Unrestricted Start-Service WSService & powershell -ExecutionPolicy Unrestricted Add-AppxPackage -DisableDevelopmentMode -Register $Env:SystemRoot\ImmersiveControlPanel\AppxManifest.xml
The only solution that worked besides refreshing or re-installing Windows was upgrading to Windows 10 Technical Preview (January build 9926).
It fixed Windows Store, PC Settings and kept programs and settings intact. It does share some minor issues. However as for today it works better without the constant Wsservice errors that 8.1 had.
User contributions licensed under CC BY-SA 3.0