Restoring Microsoft Store on Windows Laptops
Overview
This guide covers all known methods to reinstall or restore the Microsoft Store on Windows 10 and Windows 11 laptops if it is missing, broken, or unresponsive.
Method 1: Reset or Repair via Settings (Beginner-Friendly)
- Open Settings (Windows Key + I).
- Navigate to Apps → Apps & features (Windows 10) or Installed apps (Windows 11).
- Locate Microsoft Store, click the menu (three dots), then select Advanced options.
- Click Repair first. If that doesn't work, click Reset.
Method 2: Clear Cache with WSReset
- Press Windows + R, type
wsreset.exe, and hit Enter. - Wait for the command to finish and the Store to relaunch.
Method 3: PowerShell Methods
Understanding AppX Packages
Microsoft Store is a UWP app distributed as an AppX package. Each
package has: - Package Name (e.g.,
Microsoft.WindowsStore_22202...) - Install Location (where
AppxManifest.xml resides) - Publisher and Version info
If the Store is missing, the package may be unregistered, corrupted, or deleted.
Finding the Package
Run:
Get-AppxPackage -AllUsers Microsoft.WindowsStoreIf nothing is returned, the Store is not installed.
PowerShell Restore Commands
A. Re-register for Current User
Get-AppxPackage *WindowsStore* |
Foreach {Add-AppxPackage -DisableDevelopmentMode -Register "$($_.InstallLocation)\AppXManifest.xml"}B. Re-register for All Users
Get-AppxPackage -AllUsers *WindowsStore* |
Foreach {Add-AppxPackage -DisableDevelopmentMode -Register "$($_.InstallLocation)\AppXManifest.xml"}C. Reinstall All Built-in Apps
Get-AppxPackage -AllUsers |
Foreach {Add-AppxPackage -DisableDevelopmentMode -Register "$($_.InstallLocation)\AppXManifest.xml"}D. Fresh Install via Winget
winget install 9WZDNCRFJBMPMethod 4: Xbox App Method
- Install the Xbox app from Microsoft.
- Open it --- if the Store is missing, you may get a prompt to install it.
Method 5: Install via Optional Features (Windows 11)
- Open Settings → Apps → Optional features.
- Click Add a feature.
- Search for Microsoft Store, select it, and click Install.
Method 6: Create a New User Account
- Go to Settings → Accounts → Family & other users.
- Add a new user.
- Sign in --- the Store should be available.
Extra Troubleshooting
- Run:
sfc /scannow
DISM /Online /Cleanup-Image /RestoreHealth- Check you have Administrator privileges.
- Avoid running in Safe Mode (AppX operations are blocked).
Decision Flow
- Package exists? → Use Re-register commands.
- Package missing? → Install via Winget or repair install Windows.
- Still broken? → Create new user or run in-place upgrade.