Forum Discussion
What is the best app uninstall software for Windows 11?
If an app doesn't uninstall through the usual methods or if you just prefer using commands, these are excellent built-in options. About the App uninstaller for Windows 11.
A.) PowerShell: A powerful command-line tool for system administration. You can use it to remove apps, especially stubborn pre-installed ones.
1. Right-click the Start button and select "Terminal (Admin)" or search for "PowerShell", right-click it, and select "Run as administrator".
2. To see a list of all installed apps, use the command: Get-AppxPackage | Select Name, PackageFullName.
3. To uninstall a specific app, use the command:
Get-AppxPackage *appname* | Remove-AppxPackage.
For example, to remove the Xbox app, you would run:
Get-AppxPackage *xboxapp* | Remove-AppxPackage.
B.) Windows Package Manager (winget): A Microsoft command-line tool that simplifies managing software. It's particularly good for uninstalling traditional desktop (Win32) apps.
1. Open a command prompt or PowerShell window as administrator.
2. To see a list of all installed apps, use the command: winget list.
3. Find the app you want to remove and note its ID. Then, uninstall it with:
winget uninstall "App Name" or winget uninstall <AppId>.
For example, winget uninstall "Mozilla Firefox".
C.) Command Prompt (WMIC): As the best App uninstaller for Windows 11. The classic command line method for uninstalling traditional programs.
1. Open Command Prompt as administrator.
2. To see a list of installed programs, use the command: wmic product get name.
3. Once you have the exact name, uninstall it with:
wmic product where name="App Name" call uninstall.