How to Reset or Repair a Windows 10/11 App When it Fails to Work

Windows 10/1 includes a feature where you can quickly reset or repair a store app without having to uninstall and reinstall it. Universal Apps store their settings in per-app registry hives, and resetting the app is probably the only way you can clear the settings.

Reset or Repair a Windows 10/11 App

Windows 10

Open Settings (Win + i) and search for, and launch Apps & Features.

reset apps windows 10

Select the app which you want to reset, click the Advanced options link, and click Reset.

reset apps windows 10

Windows 11

On Windows 11, you’ll see a different screen. You need to click on the More icon (with three dots) and click “Advanced options”.

reset repair app apps & features windows 11

On the resulting page, click Repair and then Reset.

reset repair app apps & features windows 11



Note that some inbox apps can’t be uninstalled via this page.

This clears the settings used by the app, including stored credentials for that app (or service) if it uses one.

Reset apps using PowerShell

Starting with Insider Preview build 20175 and higher, Windows 10/11 now includes the new Reset-AppXPackage PowerShell cmdlet that can reset any UWP app. Here’s the syntax:

Reset a single app

  1. Open PowerShell and run this command to view the list of app names:
    Get-AppxPackage | Select name
  2. Copy the app name (e.g., Microsoft.Windows.Photos) from the list, that you want to reset.
  3. Run the following command to reset that app:
    Get-AppxPackage Microsoft.Windows.Photos | Reset-AppxPackage

This resets the Photos app.

Note: If you run the above Reset-AppXPackage command in Windows 10 builds earlier than 20175, the following error would occur:

Reset-AppXPackage : The term 'Reset-AppXPackage' is not recognized as the name of a cmdlet, function, script file, or operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again.

Reset multiple apps in one go

To reset multiple apps in one go, run this command:

 Get-AppxPackage | Out-GridView -Passthru | Reset-AppXPackage

reset apps powershell reset-appxpackage
Select the apps that you want to reset. Use the Ctrl key to multi-select items in the grid view, and click OK.


One small request: If you liked this post, please share this?

One "tiny" share from you would seriously help a lot with the growth of this blog. Some great suggestions:
  • Pin it!
  • Share it to your favorite blog + Facebook, Reddit
  • Tweet it!
So thank you so much for your support. It won't take more than 10 seconds of your time. The share buttons are right below. :)

Ramesh Srinivasan is passionate about Microsoft technologies and he has been a consecutive ten-time recipient of the Microsoft Most Valuable Professional award in the Windows Shell/Desktop Experience category, from 2003 to 2012. He loves to troubleshoot and write about Windows. Ramesh founded Winhelponline.com in 2005.

Leave a Comment