When you uninstall Chrome or Edge through Windows Settings, you’re not actually removing them you’re just hiding the icon. Gigabytes of leftover files, dozens of registry keys, background update services, and scheduled tasks stay behind, running silently on your machine. Here’s how to actually nuke them completely.
- Why the Normal Uninstaller Doesn’t Actually Work
- What a Complete Browser Removal Actually Involves
- How to Use Browser Nuke
- Browser Nuke vs Manual Removal vs Other Tools
- What Happens with Edge on Windows 11
- The Manual Method (If You Prefer to Do It Yourself)
- Will Edge come back after a Windows update?
- My antivirus flagged BrowserNuke.ps1 is it a virus?
- Can I keep my bookmarks and passwords?
- Some folders show “queued for reboot” did something go wrong?
- Does it work on Windows 10 as well as Windows 11?
- Stop Leaving Browser Leftovers on Your System
8 Cleanup stages run automatically
~60s Average time to complete removal
100% Files, registry, services, tasks
Why the Normal Uninstaller Doesn’t Actually Work
Go to Settings → Apps → Uninstall Google Chrome. Looks done, right? Open File Explorer and navigate to C:\Program Files\Google the folder is still there. Check your registry under HKLM\SOFTWARE\Google still there. Open Task Scheduler GoogleUpdateTaskMachineCore is still scheduled to run. Open Services gupdate and gupdatem are still running in the background.
The standard uninstaller removes the shortcut and the main executable. It leaves behind everything else because that “everything else” includes the Google Update infrastructure that’s designed to reinstall Chrome automatically the moment it gets a chance.
Edge is even worse. On Windows 11, Microsoft treats Edge as a system component, which means the standard uninstall option is either hidden or completely absent. And even if you manage to remove it, Windows Update will silently push it back within days.
The standard uninstaller removes the shortcut. It leaves the registry, the services, the scheduled tasks, and the update infrastructure everything designed to bring the browser back.
What a Complete Browser Removal Actually Involves
Doing this manually is a multi-step process that involves several Windows system tools. Here’s what a proper removal requires:
- Kill all related processes: chrome.exe, GoogleCrashHandler64, GoogleUpdate, software_reporter_tool, msedge.exe, MicrosoftEdgeUpdate, browser_broker
- Stop and delete background services: gupdate, gupdatem, edgeupdate, edgeupdatem, MicrosoftEdgeElevationService
- Remove scheduled tasks: GoogleUpdateTaskMachineCore, GoogleUpdateTaskMachineUA, MicrosoftEdgeUpdateTaskMachineCore, MicrosoftEdgeUpdateTaskMachineUA
- Run the official uninstaller with force flags: setup.exe with
--force-uninstall --system-level - Take ownership of protected folders: using takeown and icacls before attempting deletion
- Wipe registry keys: across HKLM\SOFTWARE, HKLM\SOFTWARE\WOW6432Node, HKCU\SOFTWARE, and HKLM\SYSTEM\CurrentControlSet\Services
- Remove profile data: %LOCALAPPDATA%\Google\Chrome, %LOCALAPPDATA%\Microsoft\Edge, and related folders
- Delete all shortcuts: Desktop, Start Menu, Quick Launch
- Block reinstallation: via Windows group policy to prevent Edge being pushed back by Windows Update
That’s a lot to do manually and easy to miss steps. We built a tool that does all of it in one click.
Force removal
Takes ownership of protected system folders using takeown + icacls before deletion. Even Microsoft’s locked Edge files are removed.
Service killer
Stops and permanently deletes all background update services that keep browsers running silently in the background.
Task purger
Removes all scheduled tasks that would silently re-download or reinstall the browser without your knowledge.
Reinstall blocker
Sets Windows group policies to prevent Edge being silently pushed back via Windows Update a major issue on Windows 11.
Deep registry clean
Wipes all keys across HKLM, HKCU and WOW6432Node including policies, update entries and ARP uninstall entries.
Full activity log
Every action timestamped in real time. Save the log to a file for your records or to share with support.
Remove Chrome and Edge Completely
Browser Nuke handles all 8 cleanup stages automatically. Files, registry, services, tasks everything gone. Windows 10 & 11. No subscription.
How to Use Browser Nuke
After Downloading from KentDevTools.com, you receive BrowserNuke.ps1 instantly. Here’s how to run it:
Save to your Desktop
Save BrowserNuke.ps1 to your Desktop. No installation required it’s a single file.
Right-click → Run with PowerShell
Right-click the file and choose “Run with PowerShell”. Click Yes on the Administrator prompt. The Browser Nuke window opens instantly.
Select what to remove
Browser Nuke detects which browsers are installed and shows the version. Check Chrome, Edge, or both. Choose whether to also delete user profile data (bookmarks, passwords, history).
Click DETONATE
Confirm the removal and watch the real-time log. The orange progress bar tracks all 8 stages. The whole process takes around 60 seconds.
Restart your PC
When the log shows ALL DONE, restart Windows. Any files that were locked during removal are cleaned up automatically on the next boot.
Back up your data first: Export bookmarks from Chrome (Bookmarks Manager → Export) and Edge (Favorites → Manage → Export) before running Browser Nuke. Saved passwords should be exported or moved to a password manager. This cannot be undone.
Browser Nuke vs Manual Removal vs Other Tools
You have three options when trying to fully remove Chrome or Edge from Windows. Here’s how they compare:
| What gets removed | Browser Nuke | Manual (cmd) | Windows Settings |
|---|---|---|---|
| Application files | ✅ Complete | ⚠️ Partial | ⚠️ Partial |
| Registry keys (HKLM + HKCU) | ✅ Complete | ⚠️ Easy to miss | ❌ Left behind |
| Background services | ✅ All deleted | ⚠️ Manual sc.exe needed | ❌ Still running |
| Scheduled tasks | ✅ All removed | ⚠️ Easy to miss | ❌ Still scheduled |
| Locked Edge files (Win 11) | ✅ Force removed | ❌ Access denied | ❌ Not possible |
| Edge reinstall blocker | ✅ Group policy set | ⚠️ Manual reg edit | ❌ Edge comes back |
| Time to complete | ✅ ~60 seconds | ⚠️ 30–60 minutes | ✅ 30 seconds |
| Risk of missing something | ✅ None | ❌ High | ❌ Very high |
What Happens with Edge on Windows 11
Microsoft deliberately makes Edge difficult to remove on Windows 11. The uninstall button in Settings is hidden. The Edge update service runs with elevated privileges. And after any major Windows Update, Edge is likely to reinstall itself silently.
Browser Nuke handles this specifically. Before running the uninstaller, it clears the experiment_control_labels registry flag that Microsoft uses to protect Edge from removal. It also sets the InstallDefault group policy value under HKLM\SOFTWARE\Policies\Microsoft\EdgeUpdate to block Edge from being reinstalled via Windows Update.
What about WebView2?: Browser Nuke also removes the EdgeWebView2 Runtime. Some applications (Teams, certain Windows apps) depend on WebView2. If any apps stop working after removal, reinstall WebView2 directly from Microsoft it installs independently of Edge.
The Manual Method (If You Prefer to Do It Yourself)
If you’d rather do the removal manually, here’s the PowerShell command sequence. Open PowerShell as Administrator and run these in order:
POWERSHELL — KILL CHROME PROCESSES
taskkill /f /im chrome.exe /im GoogleUpdate.exe /im GoogleCrashHandler64.exe 2>$null
POWERSHELL — DELETE CHROME SERVICES
sc.exe stop gupdate; sc.exe delete gupdate
sc.exe stop gupdatem; sc.exe delete gupdatem
POWERSHELL — TAKE OWNERSHIP AND REMOVE CHROME FOLDERS
takeown /f “C:\Program Files\Google” /r /d y
icacls “C:\Program Files\Google” /grant Administrators:F /t /q
Remove-Item “C:\Program Files\Google” -Recurse -Force
You’d then need to repeat a similar process for Edge, remove all registry keys manually across HKLM and HKCU, delete all scheduled tasks, and apply the group policy probably 30–60 minutes total, with a high chance of missing something. Browser Nuke does all of this in one click in about 60 seconds.
Will Edge come back after a Windows update?
Browser Nuke sets a group policy (InstallDefault = 0 in HKLM\SOFTWARE\Policies\Microsoft\EdgeUpdate) to block automatic reinstallation. This works for most updates. A major Windows feature update (version upgrade) may reset this policy. If Edge comes back, simply run Browser Nuke again it re-applies the blocker automatically.
My antivirus flagged BrowserNuke.ps1 is it a virus?
No, this is a false positive. Browser Nuke is a plain PowerShell text file. You can open it in Notepad and read every line of code. Some antivirus tools flag PowerShell scripts that use system commands like takeown and sc.exe because the same commands appear in malware. The script contains no obfuscation, no compiled code, and no network calls. Whitelist the file in your AV settings and verify the source code yourself before running.
Can I keep my bookmarks and passwords?
Yes, uncheck the “Delete user profile data” option before clicking DETONATE. This removes the browser and all its files but leaves your %LOCALAPPDATA%\Google\Chrome and %LOCALAPPDATA%\Microsoft\Edge profile folders intact. Alternatively, export your bookmarks and passwords from the browser before running the tool Chrome and Edge both have built-in export features in their settings.
Some folders show “queued for reboot” did something go wrong?
No, this is completely normal. Windows locks certain files while they are in use. When Browser Nuke cannot delete a file immediately, it queues it for removal before Windows loads those files on the next boot. After you restart your PC, those remaining files are cleaned up automatically. This is the same mechanism Windows itself uses for system file replacement.
Does it work on Windows 10 as well as Windows 11?
Yes. Browser Nuke is designed for and tested on both Windows 10 and Windows 11 (64-bit). The Edge removal on Windows 10 is more straightforward since Edge is not as deeply embedded as it is in Windows 11. Chrome removal works identically on both versions.
Stop Leaving Browser Leftovers on Your System
Every time someone “uninstalls” Chrome or Edge through Windows Settings, they’re leaving behind services, scheduled tasks, gigabytes of files, and dozens of registry keys. Those leftover update services consume memory and CPU in the background. Those scheduled tasks run silently. That’s not an uninstall it’s a cosmetic removal.
Browser Nuke by KentDevTools is built specifically to solve this problem. It runs all 8 cleanup stages in sequence, handles the tricky Windows 11 Edge protection, blocks reinstallation via group policy, and shows you exactly what it removed in a real-time log. One purchase, no subscription, works offline.
Download Browser Nuke For Free
Complete Chrome and Edge removal for Windows 10 & 11. Files, registry, services, tasks everything gone. Instant download from KentDevTools.com.