Skip to content
Follow
Windows

How to Reinstall Microsoft Store Apps in Windows 11

Richard
Written by
Richard
May 4, 2023 Updated Jul 14, 2026 2 min read
How to Control Windows Copilot Startup Settings
How to Control Windows Copilot Startup Settings

Reinstalling Microsoft Store apps in Windows 11 lets you fix problems by removing an app and downloading a fresh copy.

This method ensures you get a clean version of the application, which is often the fastest way to resolve issues like apps crashing or not opening at all.

For instance, if your Windows 11 Calculator suddenly won’t launch, reinstalling it usually fixes the problem quickly.

When the usual uninstall options don’t work, you might need to use Windows PowerShell to remove the app.

⚡ Quick Answer

To reinstall Microsoft Store apps, first try resetting the store cache by running wsreset.exe. If that doesn’t work, you can use PowerShell commands or the Winget utility to remove and then reinstall the app.

Why reinstall Microsoft Store apps?

Why might you need to reinstall Microsoft Store apps? Sometimes, apps break because of corrupted files or interrupted updates. Reinstalling gives the app a clean start and fixes common errors like ‘App not installed’.

What happens when done?

The app should be restored to its original state. While your settings might reset, your game save data is typically stored in the cloud or your user folder, keeping it safe.

Check for Windows Updates First

Check for Windows Updates First

📝Good to Know
Before you try to fix apps, make sure your system is up to date. Head to Settings > Windows Update > Check for updates. Often, these updates resolve system issues that might be causing your apps to act up.

Fixing Microsoft Store Cache

If the store itself is broken, clear its cache. Press ⊞ Win+R, type wsreset.exe, and press Enter. You’ll see a blank window that closes on its own once the cache is cleared.

How to reinstall apps using PowerShell

To do this, you’ll need administrator rights. Open Terminal (Admin) by right-clicking the Start button and selecting it. This opens a command line interface (a text-based way to interact with your computer) with elevated permissions, letting you run commands that change system settings.

To remove a broken app, use: Get-AppxPackage *name* | Remove-AppxPackage. To reinstall it, use:

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

Using Winget for Reinstallation

💡Tip
Winget is a powerful tool to reinstall Microsoft Store apps. Use the command winget install [ID]. For example, to reinstall the Calculator, use winget install 9WZDNCRFHVN5.
windows reinstall the microsoft store app
windows reinstall the microsoft store app

Summary

Reinstalling Microsoft Store apps is a great way to fix errors. By using the WSReset.exe tool, PowerShell commands, or the Winget utility, you can resolve app corruption quickly. Always check for Windows Updates first to ensure your system is stable.

Why is my Microsoft Store app stuck at 0% download?

Your Microsoft Store app might be stuck at 0% download because the Store’s cache is full or your internet connection is shaky.

How do I reinstall the Microsoft Store app itself if it is missing?

If the Microsoft Store 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 command tells Windows to re-register the store package on your system.

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 Use Quick Assist in Windows 11
Windows How to Use Quick Assist in Windows 11
How to Open Windows Media Player on Windows 11
Windows How to Open Windows Media Player on Windows 11
How to Add or Remove Apps from Windows 11 Start Menu
Windows How to Add or Remove Apps from Windows 11 Start Menu
How to Add Phone Link to Windows 11 Start Menu
Windows How to Add Phone Link to Windows 11 Start Menu

3 Comments

Leave a Comment

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