Não é possível acessar as configurações no Windows 8.1

3

Apliquei recentemente a atualização do Windows 8.1. Tudo correu bem, exceto que eu não consigo mais acessar o aplicativo 'Configurações' através do Start Srceen - Acabei de receber uma tela em branco ou ser enviado de volta para a tela inicial

Se eu criar uma nova conta, ela funcionará bem, mas não a minha conta.

O Log de Eventos me aponta para o Microsoft-Windows-TWinUI / Operacional, onde recebo a mensagem

The application windows.immersivecontrolpanel_cw5n1h2txyewy!microsoft.windows.immersivecontrolpanel is not registered for the Windows.Launch contract or is not installed.

Mas lutando para encontrar uma solução para isso. Encontrei algumas referências on-line, mas a maioria parecia estar relacionada a contas e diretivas de grupo baseadas em domínio, mas estou em uma conta da Microsoft / local.

Ran CHKDSK & Verificador de arquivos do sistema - mas isso também não fez nada

Alguma sugestão?

    
por aldredd 06.07.2013 / 06:36

2 respostas

1

Encontrei uma solução que funcionou para mim aqui: link

  1. Fixing the app store:

    1. Open registry editor typing regedit.exe from a command line.
    2. Browse to the registry key at HKEY_CURRENT_USER\Software\Classes\Local Settings\software\microsoft\windows\currentversion\appmodel\repository\packages.
    3. Right click on the packages key and bring up the “Permissions” tab.
    4. Click the “Advanced” button located at the bottom right corner.
    5. Check to see the account name that shows up as the “Owner” (this is the first line of text on the “advanced security settings” dialog for the “packages” key). It should say SYSTEM. (For me this showed the built-in local Administrators group)
    6. If it is any other account, click on the “Change” button next to it.
    7. Type SYSTEM in the “select user” dialog. If “Multiple Names Found” window comes up, select the row for SYSTEM.
    8. Click OK to the dialogs and close them all.
    9. Run from admin command prompt: Powershell -ExecutionPolicy Unrestricted Add-AppxPackage -DisableDevelopmentMode -Register $Env:SystemRoot\WinStore\AppxManifest.xml
  2. Fixing all modern apps:

    Run from admin PowerShell:

    ((Get-ChildItem "HKLM:SOFTWARE\Microsoft\Windows\CurrentVersion\Appx\AppxAllUserStore\InboxApplications") | Get-ItemProperty).Path | Add-AppxPackage -Register -DisableDevelopmentMode

    • When I ran this the black X persisted until after the next step and reboot. But trying to start an app gives me a new message and a link to the store.
  3. Fixing 3rd party apps:

    Delete the regkey: HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Appx\AppxAllUserStore\[UserSid]

  4. Restart.

    After a reboot the apps still showed the black X for a minute or so, but it soon cleared up on its own and all apps seemed to be working again. I was also able to update the apps from the app store once signing in with a Microsoft account. Finally, I am again able to get into PC Settings.

    
por 16.12.2014 / 13:49
1

Por alguma razão, parte dos aplicativos da Windows Store tornaram-se "não registrados" após a atualização do Windows 8 para o Windows 8.1. Consegui recuperar a funcionalidade "Configurações do PC" executando este comando:

powershell -ExecutionPolicy Unrestricted add-appxpackage -register $Env:SystemRoot\ImmersiveControlPanel\appxmanifest.xml –DisableDevelopmentMode

que registra as configurações do PC novamente. Note que eu também tive que fazer o exercício similar para outros aplicativos também, mais notavelmente a própria Windows Store.

    
por 09.12.2013 / 01:05