How to: Reinstall the Windows 10 Store

If the Windows 10 Store is giving you fits, try reinstalling it.

Rod Trent

September 9, 2015

1 Min Read
How to: Reinstall the Windows 10 Store

The new Windows Store in Windows 10 causes grief for a lot of people. Some days it works, some days it plays difficult. When I have issues most times a reboot of the computer will fix it. If you're having trouble opening the Windows Store or even having it check for downloads and updates, rebooting should be your first defense. But, if that still doesn't set things right, you might try reinstalling the Windows Store.

PowerShell is your friend.

To do this…

  1. Run PowerShell as an Administrator.

  2. Run the following PowerShell command: Get-Appxpackage –Allusers

  3. When the command completes, you'll be presented with a long list of installed apps. Use the PowerShell window Find feature and search for WindowsStore.

  4. Locate the PackageFullName and copy it.

  5. Now, use the Add-AppxPackage command to reinstall the Windows Store. Use the following command:Add-AppxPackage -register "C:Program FilesWindowsApps" –DisableDevelopmentMode

In my case, the Add-AppxPackage command line is:

Add-AppxPackage -register "C:Program FilesWindowsAppsMicrosoft.WindowsStore_2015.8.25.0_x64__8wekyb3d8bbweAppxManifest.xml" -DisableDevelopmentMode

​P.S. You can use this same method to reinstall any Windows 10 app that might be experiencing problems or to install any app listed in the AppxManifest that might have been uninstalled or never installed at all.

Sign up for the ITPro Today newsletter
Stay on top of the IT universe with commentary, news analysis, how-to's, and tips delivered to your inbox daily.

You May Also Like