Table of Contents
This practical guide explains how to reset applications on Windows computers. Follow the steps in order, review the requirements first, and use the troubleshooting notes when a setting or option does not work as expected.
Reset apps on Windows via Settings
Step 1:
Press Windows + I to open settings, then select Apps on the left side and then select Installed apps next to it.

Step 2:
Find the app you want to reinstall, then tap the 3-dot icon and select Advanced options .

Go to the application's settings interface, click Terminate to ensure this application and related processes are not running.

Step 3:
Then click Reset to reinstall the application on your computer.

How to reset applications on Windows via Start menu
Enter the name of the application you need to reset in the search bar and then App Settings next to it.

Immediately after that, you will also see the application installation interface on Windows. You perform the operations as above.
Reset the application using PowerShell
You can use a PowerShell command to reset any UWP app, which is useful when you need to repair some apps or components that are not available in the Settings app.
In this section, you will learn the steps to reset apps on Windows 10 using PowerShell.
To reset an app on Windows 10, follow these steps:
1. Open Start.
2. Search for PowerShell , right-select the top result and select the Run as administrator option to open PowerShell with admin rights.
3. Type the following command to view all installed applications and components, then press Enter:
Get-AppxPackage | Select name

4. Confirm the name of the application you want to reset.
5. Type the following command to reset the application (e.g. Cortana) and press Enter:
Get-AppxPackage Microsoft.549981C3F5F10 | Reset-AppxPackage

In the command, replace Microsoft.549981C3F5F10 with the name of the application you want to reset, identified above.
Important Note : When resetting an application using PowerShell, the application's data will also be deleted.
Once you complete the steps, the app will reset and start working properly. In addition to resetting the app, you can also uninstall the app using PowerShell.
FAQ
What should you know about reset apps on Windows via Settings?
Press Windows + I to open settings, then select Apps on the left side and then select Installed apps next to it.
How to reset applications on Windows via Start menu?
Enter the name of the application you need to reset in the search bar and then App Settings next to it.
What should you know about reset the application using PowerShell?
You can use a PowerShell command to reset any UWP app, which is useful when you need to repair some apps or components that are not available in the Settings app.
Reader Comments 0
Sign in with email or Google to join the discussion.