Unable to access the Settings in Windows 8.1
Solution 1:
I found a solution that worked for me here: https://social.technet.microsoft.com/Forums/windows/en-US/6f119828-dd1b-42da-b8b5-c6e6c0d5617c/no-apps-or-windows-store-work-after-upgrading-to-windows-81-enterprise?forum=w8itproinstall
Fixing the app store:
- Open registry editor typing regedit.exe from a command line.
- Browse to the registry key at
HKEY_CURRENT_USER\Software\Classes\Local Settings\software\microsoft\windows\currentversion\appmodel\repository\packages
.- Right click on the
packages
key and bring up the “Permissions” tab.- Click the “Advanced” button located at the bottom right corner.
- 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)- If it is any other account, click on the “Change” button next to it.
- Type
SYSTEM
in the “select user” dialog. If “Multiple Names Found” window comes up, select the row forSYSTEM
.- Click OK to the dialogs and close them all.
- Run from admin command prompt:
Powershell -ExecutionPolicy Unrestricted Add-AppxPackage -DisableDevelopmentMode -Register $Env:SystemRoot\WinStore\AppxManifest.xml
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.
Fixing 3rd party apps:
Delete the regkey:
HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Appx\AppxAllUserStore\[UserSid]
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.
Solution 2:
For whatever reason part of Windows Store apps became "unregistered" after Windows 8 to Windows 8.1 upgrade. I was able to get the "PC Settings" functionality back by running this command:
powershell -ExecutionPolicy Unrestricted add-appxpackage -register $Env:SystemRoot\ImmersiveControlPanel\appxmanifest.xml –DisableDevelopmentMode
which registers the PC Settings up again. Note that I also had to do the similar exercise for other apps too, most notably Windows Store itself.