Skip to content
Follow
Windows

How to Re-register Microsoft Store in Windows 11

Richard
Written by
Richard
Dec 30, 2022 Updated Aug 13, 2026 2 min read
How to Enable Variable Refresh Rate in Windows 11
How to Enable Variable Refresh Rate in Windows 11

Re-registering the Microsoft Store in Windows 11 fixes stubborn download errors, blank screens, and apps that refuse to open by reinstalling the store app from scratch using Windows PowerShell. This deep repair goes beyond clearing your cache and rebuilds the broken system files that stop the store from working on Windows 11 version 22H2 and newer builds.

Your installed apps and games stay safe during this fix, and nothing gets deleted from your PC. Follow the simple steps below to get your store working again in just a few minutes.

⚡ Quick Answer

Open Terminal as administrator and run the command Get-AppXPackage *Microsoft.WindowsStore* | Foreach {Add-AppxPackage -DisableDevelopmentMode -Register “$($_.InstallLocation)\AppXManifest.xml”}. This refreshes the store’s configuration files without deleting your apps.

Prerequisites and Safety

Before re-registering the Microsoft Store, creating a System Restore point acts as a safety net if anything goes wrong. Administrator privileges are required to make these changes.

How to Reset the Cache First

Before diving into re-registration, try running the wsreset.exe command to clear out corrupted temporary files. This built-in tool resolves problems quickly and serves as a reliable first step before moving on to complex solutions.

Re-registering for the Current User

Re-registering the Microsoft Store for your current user account helps when the app malfunctions. This process resets the Store app for a single Windows profile, leaving other user accounts on the same computer unaffected.

  1. Right-click the Start button and select Terminal (Admin).
  2. Copy and paste this command:
PowerShell
Get-AppXPackage *Microsoft.WindowsStore* | Foreach {Add-AppxPackage -DisableDevelopmentMode -Register "$($_.InstallLocation)\AppXManifest.xml"}

Press Enter. Red text indicates the command might not have worked. Double-check that the PowerShell window runs with administrator privileges.

Re-registering for All Users

If the Microsoft Store is broken for all users on the PC, run the `Get-AppxPackage -AllUsers | Foreach {Add-AppxPackage -DisableDevelopmentMode -Register "$($_.InstallLocation)\AppXManifest.xml"}` command. Administrator privileges are required to execute this action.

  1. Open Terminal (Admin).
  2. Run the following command:
PowerShell
Get-AppxPackage -AllUsers *WindowsStore* | Foreach {Add-AppxPackage -DisableDevelopmentMode -Register "$($_.InstallLocation)\AppXManifest.xml"}
microsoft store app dashboard
microsoft store app dashboard

Summary

Re-registering the Microsoft Store repairs Windows 11 app problems when the store itself stops working. Terminal commands repair the application for an individual account or all users, though resetting the cache remains the best starting point.

Will re-registering the Microsoft Store delete my installed apps?

No, re-registering the Microsoft Store will not delete installed apps or personal data. This process repairs the store application by refreshing system files and registration data. Games and software remain unaffected, and user settings stay intact.

What should I do if the PowerShell command fails?

If the PowerShell command to re-register the Microsoft Store fails, verify that the terminal runs as an administrator and that the command syntax is correct. Persistent issues call for the Windows Store Apps troubleshooter or a system file check.

Was this guide helpful?

Tags: #Windows 11
Was this helpful?
Richard

About the Author

Richard

Tech Writer, IT Professional

Richard, a writer for Geek Rewind, is a tech enthusiast who loves breaking down complex IT topics into simple, easy-to-understand ideas. With years of hands-on experience in system administration and enterprise IT operations, he’s developed a knack for offering practical tips and solutions. Richard aims to make technology more accessible and actionable. He's deeply committed to the Geek Rewind community, always ready to answer questions and engage in discussions.

📚 Related Tutorials

How to Open Windows Terminal as Admin Automatically
Windows How to Open Windows Terminal as Admin Automatically
How to Change PowerShell Execution Policies in Windows 11
Windows How to Change PowerShell Execution Policies in Windows 11
How to Reinstall Microsoft Store Apps in Windows 11
Windows How to Reinstall Microsoft Store Apps in Windows 11
How to Open PowerShell in Windows 11
Windows How to Open PowerShell in Windows 11

6 Comments

Leave a Comment

Your email address will not be published. Required fields are marked *