Restore Microsoft Store

When the Microsoft Store has disappeared and we can’t download anything from it the solution is:

  1. First we can try to repair it with WSRESET.EXE. If not, we move on to the next point.
  2. Open POWERSHELL as Administrator.
  3. Run the following command:
  4. Get-AppxPackage -allusers Microsoft.WindowsStore | Foreach {Add-AppxPackage -DisableDevelopmentMode -Register "$($_.InstallLocation)\AppXManifest.xml"}
  5. This command downloads and reinstalls the Microsoft Store.
  6. If the previous one does not work, you can try this other one.
    $manifest = (Get-AppxPackage Microsoft.WindowsStore).InstallLocation + '\AppxManifest.xml' ; Add-AppxPackage -DisableDevelopmentMode -Register $manifest
  7. Perhaps a WSRESET.EXE should be made later.