Forum Discussion

Henroun's avatar
Henroun
Copper Contributor
Sep 04, 2026

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

  • Uomasm's avatar
    Uomasm
    Tin Contributor

    Get-AppxPackage is exactly the right approach when you're asking "Why can't I uninstall apps on Windows 11" and the Settings app has failed you. It's a powerful, free, and built-in command-line tool that bypasses the graphical interface, giving you direct control over those stubborn applications.

    Get-AppxPackage is the fundamental command for managing "modern" apps (from the Microsoft Store) in PowerShell. To use it to its full potential.

    Once you have the PackageFullName, use the Remove-AppxPackage command to uninstall it. For a user-level uninstall, the command is:

    powershell
    Remove-AppxPackage "PackageFullName"

    For a system-wide removal, which affects all users on the device, add the -AllUsers parameter:

    powershell
    Get-AppxPackage -AllUsers *AppName* | Remove-AppxPackage -AllUsers

    Using -AllUsers with the Remove-AppxPackage command ensures the app is removed for all accounts, not just the current one.

    It is a completely free and native tool that can often remove stubborn Microsoft Store (UWP) apps when the Settings app fails, providing a clear answer to "Why can't I uninstall apps on Windows 11?" when other methods are greyed out.