Metro features and Apps not working after windows 8.1 upgrade

By jldurham6,

  Filed under: Windows 8
  Comments: None

Windows App Store doesn’t load after 8.1 Upgrade v. 2 (Also Works for Windows 10!)

If you’re currently experiencing abandonment issues from the Windows Store after upgrading to Windows 8.1, don’t panic there is hope.

You may see the Windows Store loading screen stuck in perpetual loop without end.

 

There is a relatively quick and painless fix.

You may have seen other sites recommend running the WSreset.exe tool, or manually trying to clear the cache from the Windows\SoftwareDistribution\Download folder.

Don’t.  This can happen when the Store needs to be re-registered after an upgrade.

Open a Command Prompt as an Administrator.

In the Administrator Command Prompt

type or paste the following command:

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

hit Enter.

Now in that same Administrator Command Prompt type or paste: start "" "ms-windows-store:"

Voila. Enjoy installing some new Store apps.

Update 10/2/2014 – I’ve had several users contact me that this also works when testing the Windows 10 Technical Preview which you can get here - Windows 10 Technical Preview

I’ve tested these steps this morning, and they do appear to be the same in Windows 10.

 

 

 

Also here is a script

I put the following commands into a text file named Fix-Store-App-Problem.ps1 and then loaded it into an elevated PowerShell prompt:

Start-Transcript -Path D:\Fred\Store-App-Fix-log.txt -Force

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

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

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

Stop-Transcript