Forum Discussion
Why can't I uninstall certain apps on Windows 11?
Trying to clean up a Windows 11 PC and ran into a strange problem. Why can't I uninstall certain apps on Windows 11? Most programs can be removed normally, but a few either don't have an uninstall option or simply stay on the computer after clicking Uninstall.
One of them even appears to go through the removal process and then shows up again afterward. Not sure if this is caused by leftover files, a broken uninstaller, or Windows protecting certain apps. Has anyone dealt with this? What's the proper way to completely uninstall a stubborn program when the normal uninstall option doesn't work?
11 Replies
- CameronLewisIron Contributor
The official Microsoft Program Install and Uninstall Troubleshooter was the go-to fix for these issues.
- AidenGarciaIron Contributor
Remove via Registry
- AsainnaBronze Contributor
Safe Mode Uninstall
- OkimmsIron Contributor
Uninstall via Settings
- ArkansasQuapawIron Contributor
Revo Uninstaller
- WilliamHuangIron Contributor
Revo Uninstaller
- DeBertrandIron Contributor
Uninstall via Command Prompt
- MaverickLincolnIron Contributor
Uninstall via PowerShell
- BlaoprIron Contributor
The "uninstall" option in Windows 11 often fails due to corrupted registry entries, system file damage, or third-party antivirus interference. Sometimes, built-in apps are protected by the system, while others leave behind residual files that block removal. Why can’t I uninstall apps on Windows 11? Usually, it’s a permissions issue or a stalled installation process that Windows can’t resolve automatically.
Common Questions
1. Why can’t I uninstall apps on Windows 11 even with admin rights?
→ Some system apps (like Edge or Cortana) are locked; you’ll need PowerShell commands or third-party tools to force-remove them.2. What if the "Uninstall" button is grayed out?
→ This often means the app is running in the background or is part of a pending update—restart your PC and try again.3. How do I remove apps that don’t appear in Settings or Control Panel?
→ Use the Programs & Features list or run winget commands in Terminal for hidden or store-downloaded apps.4. Can a virus prevent uninstallation?
→ Yes—malware can block removal. Run an offline Defender scan first, then attempt uninstall.5. Why do I get error codes (like 0x80073CFA) when uninstalling?
→ That’s a Windows Store or package corruption issue; use the Windows App Troubleshooter or reset the Store cache with wsreset.exe. - WeionaTin Contributor
If you find that you can't uninstall apps in Windows 11 through the standard Settings app, using the built-in command-line tool winget is an excellent and robust next step. winget can often remove stubborn applications that the graphical interface fails to handle, making it a reliable solution when you can't uninstall apps in Windows 11 the usual way.
Here is how to use it:
- Open a Terminal as Administrator: Right-click the Start button and select "Terminal (Admin)" or "Command Prompt (Admin)".
- Find the App's Identifier (ID): Use the winget list command to see a list of installed apps. To filter for a specific one, use winget list "app name". This will show you the exact ID for the app.
- Uninstall the App: Once you have the ID, use the command winget uninstall <app_id>. For example, to remove a specific version you would run winget uninstall --name <app_name> --version <version_number>.
Note: winget might not be able to distinguish between 32-bit (x86) and 64-bit (x64) versions of the same app, potentially uninstalling the wrong one if you try to specify by version only. On corporate or heavily restricted networks, winget may fail to uninstall if it cannot access the Microsoft repository.
If winget cannot complete the uninstall, your next best option is to use the official Microsoft Program Install and Uninstall Troubleshooter. This tool is designed to fix common issues that prevent installations and removals, and is a recommended path when other methods fail.