Skip to content
Follow
Windows

How to Re-register Microsoft Store in Windows 11

Richard
Written by
Richard
Dec 30, 2022 Updated Jun 19, 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 resolves issues like the store not opening, showing blank pages, or failing to download apps.

This process rebuilds the Microsoft Store’s essential configuration files, ensuring a fresh connection to your Windows 11 system and user account.

It’s a powerful fix that goes beyond simple cache clearing, often tackling stubborn download errors or unexpected crashes you might be experiencing with the latest Windows 11 builds.

Don’t worry, re-registering the Microsoft Store won’t uninstall your current apps. You’ll simply get the store working correctly again so you can easily download and update your favorite applications.

⚡ 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 you re-register the Microsoft Store, it’s smart to create a System Restore point. This acts like a safety net if anything goes wrong, and you’ll need Administrator Privileges to make changes.

How to Reset the Cache First

Before you re-register the Microsoft Store, try resetting its cache first using the simple wsreset.exe command. This built-in tool can often fix problems quickly and is a good first step before trying more complex solutions.

Re-registering for the Current User

You can re-register the Microsoft Store just for your account if it’s not working correctly for you alone.

  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. If you see red text, the command might not have worked. Double-check that your PowerShell window is running as an administrator.

Re-registering for All Users

If the store is broken for everyone on the PC, use this command. Requires Administrator Privileges.

  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 is a useful fix for Windows 11 app problems, especially when the store itself isn’t working right. You can use commands in an admin terminal to repair it for your account or everyone, but always try resetting the cache first.

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

No, re-registering the Microsoft Store will not delete your installed apps or personal data. This process only repairs the store application itself by refreshing its system files and registration. Your games and software will remain exactly where they are, and your settings will stay intact.

What should I do if the PowerShell command fails?

If the PowerShell command to re-register the Microsoft Store fails, first double-check that you’re running the Terminal as an administrator and that the command is typed correctly. If problems continue, try the Windows Store Apps troubleshooter or run 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 *