0

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.

enter image description here

What's happening?

3

2 Answers 2

0

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
7
  • This error appears: The ampersand (&) character is not allowed.
    – Gabriel
    Commented Feb 4, 2015 at 20:43
  • My apologies should have asked before answering: How are you running the commands; are you running from Powershell or command prompt? The above should work if you run from command prompt. If you're running from Powershell substitute the ampersand's (&) with semicolons (;) .
    – Qwilson
    Commented Feb 4, 2015 at 20:48
  • Thank you, both lines fail in Safe Mode with this: windows.licensing failed to start WSService, I will try now in a normal boot.
    – Gabriel
    Commented Feb 4, 2015 at 20:53
  • Same results on normal boot.
    – Gabriel
    Commented Feb 4, 2015 at 21:11
  • Are you running as an administrator? Can you confirm "RPC Endpoint Mapper" and "DCOM Server Process Launcher" are running?
    – Qwilson
    Commented Feb 5, 2015 at 21:25
0

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.

You must log in to answer this question.

Not the answer you're looking for? Browse other questions tagged .