Forum Discussion
Geek Uninstaller not working? What is the best alternative for app removal?
Remove-AppxPackage is a PowerShell command designed for removing UWP/Appx applications. However, Edge is no longer a simple Appx package. Since the Chromium-based version, Edge is deployed as a traditional Win32 application via setup.exe, so Appx commands cannot touch its core files.
Even if you run Get-AppxPackage *MicrosoftEdge* and find a leftover Appx entry to remove, this will not actually uninstall the Edge browser itself—it only deletes a shell. Microsoft's own community answers confirm this approach "does not completely delete the Edge browser," and data remains intact. Edge's executable files, update service, and system integration are all untouched.
What the Real Alternative Is
For Edge, which Geek Uninstaller cannot handle, the effective alternative to Geek Uninstaller is to call Edge's own built-in uninstaller (setup.exe), not an Appx command. The method is to run this from Edge's installation directory:
text
setup.exe --uninstall --system-level --verbose-logging --force-uninstall
If you're looking for a GUI tool as an alternative to Geek Uninstaller, the open-source project AppExorcist claims to "force remove Windows apps" and prevent them from reinstalling, but it also requires manually excluding critical system components and is not specifically designed for Edge.
Regardless of which method you use, Edge on Windows 10 will attempt to reinstall itself after system updates. To truly stop it from coming back, you need to additionally disable Edge's update service and scheduled tasks after uninstalling—otherwise it will likely return with the next Windows Update.