Wsservice falha ao tentar corrigir a Windows Store 8.1

0

Meus aplicativos do Metro não estão sendo carregados. Eles retornam:

This App can't run

Usando este comando no Powershell:

powershell -ExecutionPolicy Unrestricted Add-AppxPackage -DisableDevelopmentMode -Register $Env:SystemRoot\ImmersiveControlPanel\AppxManifest.xml

Retorna:

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 aparece parado com o tipo de inicialização definido como Manual.

Atempting a reinicialização retorna:

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.

O que está acontecendo?

    
por Gabriel 04.02.2015 / 18:14

2 respostas

0

A única solução que funcionou além de atualizar ou reinstalar o Windows foi a atualização para o Windows 10 Technical Preview ( janeiro construir 9926 ).

Ele corrigiu a Windows Store, as configurações do PC e manteve os programas e configurações intactos. Ele compartilha alguns problemas menores. No entanto, como hoje funciona melhor sem os constantes erros de serviço que o 8.1 tinha.

    
por 06.02.2015 / 21:14
0

Você poderia tentar o seguinte

powershell -ExecutionPolicy Unrestricted Start-Service WSService & powershell -ExecutionPolicy Unrestricted Add-AppxPackage -DisableDevelopmentMode -Register $Env:SystemRoot\ImmersiveControlPanel\AppxManifest.xml

Se isso falhar, tente chamar o WSService antes de iniciar o serviço

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
    
por 04.02.2015 / 21:31