- To uninstall apps on Windows 10, open Settings > Apps > Apps & features, select the app, click “Uninstall,” and click “Uninstall” again.
- Another way to remove an app is to open Control Panel > Uninstall a program, select the app, and click “Uninstall.”
- You can also remove programs on Windows 10 from the Start menu, Windows Package Manager, PowerShell, Command Prompt, and through the “Optional features” settings page for some specific system apps.
- It’s even possible to use third-party tools like Wintoys and Bulk Crap Uninstaller to remove apps and leftover files.
UPDATED 9/4/2024: On Windows 10, the ability to uninstall apps is an essential mechanism that allows you to remove apps that are no longer needed from your computer. It can also help you to get rid of bloatware, free up space, and troubleshoot problems.
If you won’t be using a specific program or have to reinstall one of them, Windows 10 includes multiple ways to uninstall apps completely using the Settings app, Control Panel, Windows Package Manager, PowerShell, and even Command prompt. In the case that it’s not possible to remove an app, you’re dealing with a system application, or there are problems uninstalling the app, you can use third-party uninstallers, such as Wintoys and Bulk Crap Uninstaller.
In this guide, I will teach you the different ways to uninstall programs on Windows 10.
- Method 1: Uninstall apps from Settings
- Method 2: Uninstall apps from Start menu
- Method 3: Uninstall apps from Optional features
- Method 4: Uninstall apps from Windows Package Manager
- Method 5: Uninstall apps from Control Panel
- Method 6: Uninstall apps from PowerShell
- Method 7: Uninstall apps from Command Prompt
- Method 8: Uninstall apps with Wintoys
- Method 9: Uninstall apps with BC Uninstaller
Method 1: Uninstall apps from Settings
I recommend first using the “Apps & features” page from the Settings app and the “Start menu” since these are the easiest methods for removing apps. If you are still unable to remove the program, you can try using the different methods.
To uninstall an app on Windows 10, use these steps:
-
Open Settings on Windows 10.
-
Click on Apps.
-
Click on Apps & features.
-
Select the app to remove under the “Apps & features” section.
Quick tip: If you have a lot of apps, you can use the search box, the “Sort by” and “Filter by” options to find the app faster. -
Click the Uninstall button.
-
Click the Uninstall button again.
Quick note: If you are removing a classic desktop program, continue with the on-screen directions to complete the process.
Once you complete the steps, the application will be removed from your computer.
If the app has the “Uninstall” button grayed out, you may have stumbled upon a system application that can’t be removed from the Settings. However, you may still be able to remove it using the PowerShell method or third-party tools.
Method 2: Uninstall apps from Start menu
To remove apps on Windows 10 from the Start menu, use these steps:
-
Open Start.
-
Right-click the application and select the Uninstall button.
- Click the Uninstall button again.
After you complete the steps, the Microsoft Store application will be removed from the computer.
Method 3: Uninstall apps from Optional features
You can also remove system apps known as “features on-demand,” including apps like Notepad, Paint, WordPad, Windows Media Player, and many others through the Settings app.
To remove optional features on Windows 10, use these steps:
-
Open Settings.
-
Click on Apps.
-
Click on Apps & features.
-
Click the Optional features option under the “Apps & features” section.
-
Select the app you want to uninstall — for example, Notepad, WordPad, and Microsoft Paint.
-
Click the Uninstall button.
After you complete the steps, the system application will no longer be available on the device.
Method 4: Uninstall apps from Windows Package Manager
Windows Package Manager (winget) is a command-line tool available on Windows 10, and it has been designed to save you time and frustration by automating the process of searching, downloading, installing, uninstalling, upgrading, and configuring software.
To remove a program with the winget command on Windows 10, use these steps:
-
Open Start.
-
Search for Command Prompt, right-click the top result, and select the Run as administrator option.
-
Type the following command to view a list of the apps you can uninstall with the Windows Package Manager and press Enter:
winget list
-
Type the following command to uninstall an app with winget and press Enter:
winget uninstall "APP-NAME"
In the command, change “APP-NAME” for the app’s actual name. Quotations are only required if the app has spaces in the name. For example, this command uninstalls the Microsoft Teams app on Windows 10:
winget uninstall "microsoft teams"
Once you complete the steps, the app will be removed from the computer. If you are removing a traditional desktop application, the app uninstaller interface may appear with additional steps to complete the uninstall.
Method 5: Uninstall apps from Control Panel
On Windows 10, you can still use the Control Panel to remove programs, but only classic apps, not the ones you install from Microsoft Store.
To uninstall a classic desktop program (Win32) on Windows 10, use these steps:
-
Open Control Panel.
-
Click the Uninstall a program option under the “Programs” category.
-
Select the program to remove from Windows 10.
-
Click the Uninstall button.
-
Continue with the on-screen directions (if applicable).
After you complete the steps, the Win32 app will be removed from your computer. You can always repeat the instructions to uninstall other apps.
Method 6: Uninstall apps from PowerShell
Although it is possible to use the Settings app to remove classic and modern apps, you still cannot uninstall many system applications, and this is when PowerShell comes in handy. In addition to using the Settings app and Control Panel, you can also use PowerShell to uninstall classic, modern, system apps, and other tools.
To remove a program through PowerShell on Windows 10, use these steps:
-
Open Start.
-
Search for PowerShell, right-click the top result, and click the Run as administrator option.
-
Type the following command to view all the apps installed on your device and press Enter:
Get-AppxPackage
Type the following command if you want a list of the Windows apps installed for all users, and press Enter:
Get-AppxPackage -AllUsers
In the output, you will see a long list of apps, which can be overwhelming, but you need to do this to know the name of the apps you want to uninstall. For example, if you want to uninstall the “Camera” app, you will notice that the system name is “Microsoft.WindowsCamera” in the listing.
-
Type the following command to uninstall an app and press Enter:
Get-AppxPackage PROGRAM-NAME | Remove-AppxPackage
In the command, make sure to replace “PROGRAM-NAME” with the application’s actual name, as listed in the above step. For example, this command uninstalls Cortana on Windows 10:
Get-AppxPackage Microsoft.549981C3F5F10 | Remove-AppxPackage
Once you complete the steps, the app will no longer be available on your device, but you can always reinstall it using the Microsoft Store.
Method 7: Uninstall apps from Command Prompt
Alternatively, you can also use Command Prompt to uninstall applications using the Windows Management Instrumentation Command-line (WMIC) tool, but only classic desktop programs, not Microsoft Store apps.
To remove apps with the WMIC command-line tool on Windows 10, use these steps:
-
Open Start.
-
Search for Command Prompt, right-click the top result, and select the Run as administrator option.
-
Type the following command to launch the WMIC tool and press Enter:
wmic
-
Type the following command to list all the installed applications and press Enter:
product get name
-
Type the following command to uninstall a program and press Enter:
product where name="PROGRAM-NAME" call uninstall
In the command, make sure to replace “PROGRAM-NAME” with the application’s actual name, as listed in the above step. For example, this command removes the Microsoft Edge Dev app:
product where name="Microsoft Edge Dev" call uninstall
-
Type “Y” to confirm the uninstall process.
Once you complete the steps, the program you specified in the command will be uninstalled from Windows 10.
Method 8: Uninstall apps with Wintoys
Wintoys is a non-Microsoft software that makes it easier to remove first- and third-party applications, as well as those apps that Microsoft considers essential for the system, and blocks users from uninstalling them. In addition, the app provides other ways to optimize the operating system, such as tweaking settings and access tools to repair the system quickly.
You can install Wintoys from the Microsoft Store or through the Windows Package Manager with the winget install --id 9P8LTPGCBZXD
command.
To remove apps with the Wintoys tool, use these steps:
-
Open Wintoys.
-
Click on Apps.
-
Click the menu (three-dots) button and select the Uninstall option.
-
Continue with the on-screen directions (if applicable).
After you complete the steps, the app will uninstall immediately without confirmation from Windows 10. The menu also includes options to terminate the application, open the folder location, reset, and more.
The Wintoys app works on Windows 10 and Windows 11. This guide will walk you through everything you need to know about how to use the app.
Method 9: Uninstall apps with BC Uninstaller
The Bulk Crap Uninstaller (BCU or BC Uninstaller) is a third-party open-source advanced tool that allows you to uninstall one or multiple applications in bulk without minimal interaction on your part. The app can also clean leftover files and entries, detect orphaned apps, and more. This third-party uninstaller software has been around for a long time, and it works on Windows 7, 8, 8.1, 10, and 11.
The BC Uninstaller is available on GitHub, and you can download the installer or portable (recommended) from different download sources, such as OSDN. Once you download the application, select the “.zip” file on File Explorer, click the “Extract all” button, and continue with the on-screen directions to complete the unzip process.
To uninstall apps through Bulk Crap Uninstaller on Windows 10, use these steps:
-
Open File Explorer.
-
Open the folder containing the Bulk Crap Uninstaller files.
-
Double-click the BCUninstaller.exe to launch the app.
Quick tip: If this is the first time running the app, you will need to complete the initial wizard using the default settings. -
(Optional) Under the “Filters” section, choose the options to filter and find the apps to remove from Windows 10.
-
Select the app from the list.
-
Click the Uninstall button.
-
Click the Continue button.
-
Click the “Kill all” button to close other apps and services (if applicable).
-
(Optional) Select the uninstall settings.
Quick note: The default settings should be enough for most situations. -
Click the Continue button.
-
Click the Begin Uninstallation button.
-
Continue with the on-screen directions (if applicable).
Once you complete the steps, depending on the settings, the Bulk Crap Uninstaller will continue removing the app from Windows 10. After removing the app, You may be prompted to scan for leftover files. If this is the case, it’s recommended to proceed to make sure the app and other files are completely removed from the system.
Sometimes, you may need special tools to remove specific apps. For example, if you’re having problems removing the Microsoft 365 or Office apps, Microsoft offers the Recovery Assistant tool that contains specially crafted scripts to uninstall the suite of apps completely.
In addition, other applications may require specific instructions, depending on how they were built. Sometimes, you have to remove packages in a specific sequence. Otherwise, you may not be able to uninstall it correctly. In these cases, it’s recommended to check with the software vendor for specific instructions.
Finally, there are those standalone apps that can run without being installed. In these cases, you can simply delete the folder with the components to completely remove them from Windows 10.
If nothing seems to work, the app is causing problems, and you have had the same setup for a long time, perhaps it’s time to perform a clean install of Windows 10, which removes all the apps from the computer and helps you to start with a fresh copy that can also resolve performance and other issues.
Update September 4, 2024: This guide has been updated to ensure accuracy and reflect changes to the process.