When the Microsoft Store has disappeared and we can’t download anything from it the solution is:
- First we can try to repair it with WSRESET.EXE. If not, we move on to the next point.
- Open POWERSHELL as Administrator.
- Run the following command:
Get-AppxPackage -allusers Microsoft.WindowsStore | Foreach {Add-AppxPackage -DisableDevelopmentMode -Register "$($_.InstallLocation)\AppXManifest.xml"}
- This command downloads and reinstalls the Microsoft Store.
- 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
- Perhaps a WSRESET.EXE should be made later.