How to Reinstall Microsoft Store Apps in Windows 11

Richard
Written by
Richard
May 4, 2023 Updated May 1, 2026 2 min read

You can easily reinstall Microsoft Store apps in Windows 11 when they stop working or disappear.

This process involves removing the problematic app and then downloading a fresh copy from the Microsoft Store, ensuring you have the latest, uncorrupted version.

For instance, if an app is consistently crashing or won’t launch, a simple reinstall often resolves the issue, saving you from more complex troubleshooting.

This guide shows you how to remove an app using PowerShell and then get it back from the Store.

Why reinstall Microsoft Store apps?

Apps can break due to 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 will be restored to its original state. Your settings may reset, but your game save data is usually stored in the cloud or your user folder, so it stays safe.

Check for Windows Updates First

Before fixing apps, ensure your system is current. Go to Settings > Windows Update > Check for updates. Updates often fix underlying system issues that cause app corruption.

Fixing Microsoft Store Cache

If the store itself is broken, clear its cache. Press ⊞ Win+R, type wsreset.exe, and press Enter. A blank window will open and close automatically when the cache is cleared.

How to reinstall apps using PowerShell

Note: This process requires admin privileges. Right-click the Start button and select Terminal (Admin).

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

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.

Summary

Reinstalling Microsoft Store apps is a simple 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?

A download stuck at 0% is often caused by a corrupted Microsoft Store cache or a blocked network connection. Try running the WSReset.exe utility to clear the cache, check your internet settings, and ensure that your Microsoft Account is correctly synced in the Windows settings menu.

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 forces Windows to re-register the store package on your system.

Was this guide helpful?

Tags: #Windows 11
Was this helpful?

3 Comments

Leave a Comment

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

Exit mobile version