Forum Discussion
Geek Uninstaller not working? What is the best alternative for app removal?
Yes, Command Prompt can work when Geek Uninstaller not working. Edge is protected as a system component, so normal uninstallers often fail—but the built-in installer supports a hidden force-uninstall parameter that bypasses the GUI entirely.
Command Prompt Method
Run Command Prompt as Administrator, then navigate to the Edge installer folder. The version number folder changes with updates, so you need to check it first:
cd "C:\Program Files (x86)\Microsoft\Edge\Application"
dir
Then enter the version folder and run the uninstall command:
cd [version-number]\Installer
setup.exe --uninstall --system-level --verbose-logging --force-uninstall
Replace [version-number] with the actual folder name (e.g., 130.0.2849.68).
Why This Works When Geek Uninstaller Not Working
Geek Uninstaller relies on standard Windows uninstall APIs. Edge deliberately disables those APIs because Microsoft treats it as a core component. The setup.exe method works differently—it calls Edge's own installer with a forced uninstall flag, which bypasses the restriction entirely.
Important Caveat
Uninstalling Edge via Command Prompt does not stop it from coming back after Windows Updates. You'll also need to block the EdgeUpdate service and registry keys to prevent reinstallation. Otherwise you'll be back to the same situation where Geek Uninstaller not working, just with a different tool.