How to Reset Microsoft Store App in Windows 11
Is your Microsoft Store acting up? Sometimes, the app won’t open, freezes, or just stops working. This guide will show you how to fix it.
Why reset the Microsoft Store?
The Microsoft Store is a special type of app designed to work across many Windows devices. Over time, its settings can get corrupted or cluttered. Resetting it clears out these bad settings and brings the app back to its original factory state, just like it was when you first bought your computer.
What happens when you are done?
Once you reset the app, it will be clean and fresh. Note that you will be signed out, and any custom preferences you saved inside the store app will be deleted. You will simply need to sign back in to start using it again.
Prerequisites
Before you begin, ensure your internet connection is stable. Check for pending updates by going to Settings > Windows Update. Keeping your system updated is the best way to prevent app errors.
Method 1: Using App Settings
This is the easiest way to fix the store.
- Open your Start menu.
- Find the Microsoft Store icon.
- Right-click on it and select App settings.

Scroll down until you see the Reset section. You can try the Repair button first, which doesn’t delete your data. If that doesn’t work, click the Reset button.

A warning will appear telling you that this will delete the app’s data, including your sign-in details. Click Reset again to confirm.

Method 2: Using WSReset.exe
The WSReset.exe tool is a built-in command that clears the Microsoft Store cache without changing your account settings.
- Press Windows Key + R on your keyboard.
- Type wsreset.exe and press Enter.
- A blank command prompt window will open. Wait for it to close automatically; the Store will then launch on its own.
Method 3: Using PowerShell (Admin Required)
If the first methods didn’t work, you can force the store to re-register itself. Requires admin privileges.
- Click the Start button and type PowerShell.
- Right-click the result and choose Run as administrator.

To reset the store for your own user account, copy and paste this command into the window and press Enter:
Get-AppXPackage *Microsoft.WindowsStore* | Foreach {Add-AppxPackage -DisableDevelopmentMode -Register “$($_.InstallLocation)\AppXManifest.xml”}
If you want to reset the store for everyone who uses this computer, use this command instead:
Get-AppxPackage -AllUsers *WindowsStore* | Foreach {Add-AppxPackage -DisableDevelopmentMode -Register "$($_.InstallLocation)\AppXManifest.xml"}

Advanced Repair: SFC and DISM
If the store is still broken, your system files might be damaged. Requires admin privileges.
- Open PowerShell as administrator.
- Type
sfc /scannowand press Enter. - After that finishes, type
DISM /Online /Cleanup-Image /RestoreHealthand press Enter.
Summary
If your Microsoft Store is crashing or failing to open, you don’t need to be an expert to fix it. You can use the built-in App settings menu to reset the app to its default state. If the problem continues, using PowerShell as an administrator to re-register the app is a powerful way to clear out deeper issues. These steps will help ensure your apps download and update without any more headaches.
What should I do if the Microsoft Store is completely missing from my PC?
If the app is missing, you can reinstall it using PowerShell. Open PowerShell as an administrator and run the command: Get-AppxPackage -AllUsers Microsoft.WindowsStore | Foreach {Add-AppxPackage -DisableDevelopmentMode -Register “$($_.InstallLocation)\AppXManifest.xml”}. This will force Windows to reinstall the store package from your system files.
Does resetting the store require a Windows restart?
No, resetting the Microsoft Store does not require a full Windows restart. Once the reset process completes, you can simply open the Microsoft Store app again. If you continue to experience issues after a reset, a restart may help clear lingering background processes that could be interfering with the app.
Was this helpful? Let us know in the comments below!
Was this guide helpful?
Leave a Reply