Other

Resetting Microsoft Store in Windows: A Complete Recovery Guide

This article explains how to reset Microsoft Store to factory settings using PowerShell to fix common errors like app download failures or stuck updates. After following this guide, the app store will function correctly again.

Updated at February 15, 2026
5-10 min
Easy
FixPedia Team
Применимо к:Windows 10Windows 11

Introduction / Why This Is Needed

Microsoft Store (Windows App Store) is a central component for installing and updating apps in modern versions of Windows. Sometimes, due to update failures, cache corruption, or software conflicts, the store may stop launching, freeze at the loading stage, or display errors when attempting to install apps.

Instead of complex methods, such as creating a new user account or system restore, it is often sufficient to reset (re-register) the Microsoft Store package itself. This procedure restores the app's system files and associations without affecting your personal data, settings, or apps already installed through the Store. This guide applies to Windows 10 and Windows 11.

Requirements / Preparation

Before you begin, ensure that:

  • You have administrator rights on the computer.
  • You are running Windows 10 (version 1607 and later) or Windows 11.
  • You have a stable internet connection (for later verification of the store).
  • It is recommended to temporarily disable third-party antivirus software, as it may block the execution of PowerShell system commands.

Step 1: Launch PowerShell as Administrator

PowerShell is a powerful command-line shell built into Windows. This is where we will perform the recovery.

  1. Press the Win + X key combination on your keyboard.
  2. In the menu that appears, select "Windows PowerShell (Administrator)" or "Windows Terminal (Administrator)" (the name depends on your system version).
  3. If a User Account Control (UAC) prompt appears asking "Do you want to allow this app to make changes to your device?", click "Yes".

In the dark window that opens, you will see a command prompt, for example, PS C:\WINDOWS\system32>.

Step 2: Execute the Store Re-registration Command

Now, execute the key command. It will automatically find the installed Microsoft Store package and re-register it in the system using its original manifest files.

Copy the command below, paste it into the PowerShell window, and press Enter:

Get-AppxPackage *WindowsStore* | Foreach {Add-AppxPackage -DisableDevelopmentMode -Register "$($_.InstallLocation)\AppXManifest.xml"}

What this command does:

  1. Get-AppxPackage *WindowsStore* — finds among all installed AppX packages the one whose name contains "WindowsStore".
  2. | Foreach { ... } — for each found package, performs the actions in curly braces.
  3. Add-AppxPackage -DisableDevelopmentMode -Register ... — re-registers the package, disabling developer mode (important for stability). The path to the manifest file (AppXManifest.xml) is taken from the package's original location.

Important: If the command executes successfully, you will not see any error message. Only a new prompt line like PS C:\...> will appear. If problems occur, PowerShell will output red text with an error description (e.g., "Failed to find package...").

Step 3: Restart the Computer

After successfully running the command, you must restart your computer. This is important because re-registration can affect background services and the Windows shell context.

Click the Start button, then the "Restart" button (or "Power" → "Restart"). Wait for the system to fully load and sign in to your account.

Step 4: Verify the Store is Working

  1. Open Microsoft Store (via the Start menu or search).
  2. Wait for the interface to load completely. The standard splash screen and app catalog should appear without errors.
  3. For a final check, find any simple free app (e.g., the "Calculator" app from Microsoft) and click "Install". The download and installation process should complete without issues.

If the store opens and the installation succeeds, the problem is resolved.

Potential Issues

  • Access denied error when running the command: Ensure you launched PowerShell as Administrator (Step 1). Simply opening a regular PowerShell window does not provide sufficient privileges.
  • Command did not find the WindowsStore package: This can happen if the system is severely damaged. Try performing a Windows update first via "Settings" → "Update & Security". If that doesn't help, consider more drastic methods, such as creating a new user profile.
  • Microsoft Store still doesn't work after the reset: Check that your system has the correct date and time enabled (incorrect time settings often break digital stores). Also, try clearing the Store cache by pressing Win + R, typing wsreset.exe, and pressing Enter.
  • Other system errors appear: If you notice problems in other components after resetting the store, run a system file integrity check: open Command Prompt (cmd) as administrator and type sfc /scannow.

F.A.Q.

Why did Microsoft Store stop working and why is a reset needed?
Will resetting Microsoft Store delete my installed apps?
What to do if the PowerShell command doesn't help?
Can I reset Microsoft Store without PowerShell?

Hints

Launching PowerShell as Administrator
Executing the store re-registration command
Restarting the computer
Checking store functionality
FixPedia

Free encyclopedia for fixing errors. Step-by-step guides for Windows, Linux, macOS and more.

© 2026 FixPedia. All materials are available for free.

Made with for the community