How to Completely Remove Microsoft Edge from Windows Server 2019 and Clean All Edge Data for Every User Account
Microsoft Edge is the default Chromium-based web browser included with Windows Server 2019 and many later Windows updates. While Edge provides modern web com...
Microsoft Edge is the default Chromium-based web browser included with Windows Server 2019 and many later Windows updates. While Edge provides modern web compatibility and security features, it is not always required in Remote Desktop Services (RDS) or Terminal Server environments where organizations standardize on another browser such as Google Chrome.
In environments hosting 20–50 concurrent users, removing unnecessary applications can simplify administration, reduce storage consumption, eliminate update overhead, and minimize user confusion.
This guide explains how to safely remove Microsoft Edge, clean its cache from all user profiles, disable Edge Update services, and understand the limitations imposed by Windows.
Why Remove Microsoft Edge?
Organizations commonly remove Edge because:
- Standardization on Google Chrome
- Reduced software maintenance
- Eliminate duplicate browsers
- Prevent accidental browser usage
- Save disk space
- Remove unnecessary update services
- Simplify Group Policy management
- Reduce profile size in RDS environments
Before You Begin
Before removing Microsoft Edge:
- Log in as Administrator.
- Close all Edge sessions.
- Create a system backup or snapshot.
- Ensure another browser (Chrome, Firefox, etc.) is installed.
- Verify no business application depends on Edge or WebView2.
Understanding Microsoft Edge Components
Edge installation generally consists of:
- Microsoft Edge Browser
- Edge Update Service
- Edge Update Scheduled Tasks
- User Profile Data
- Browser Cache
- Code Cache
- GPU Cache
- Service Worker Cache
- Crash Reports
- Web Storage
- Download History
- Cookies
- Extensions
- Microsoft Edge WebView2 Runtime
The browser itself can often be removed, but WebView2 should usually remain unless you are certain no software requires it.
Step 1 – Close All Edge Processes
Terminate all running Edge processes before uninstalling.
Get-Process msedge,MicrosoftEdge,msedgewebview2 -ErrorAction SilentlyContinue |
Stop-Process -Force
Step 2 – Remove Edge Cache for Every User
Delete browser cache from all Windows user profiles.
Typical folders include:
- Cache
- Code Cache
- GPUCache
- Service Worker Cache
- Media Cache
- Shader Cache
- Sessions
- Local Storage
- IndexedDB
- Crashpad
Cleaning these folders can reclaim hundreds of megabytes—or even several gigabytes—on heavily used RDS servers.
Step 3 – Disable Edge Update Services
Microsoft Edge installs background update services:
- edgeupdate
- edgeupdatem
Disable them:
Stop-Service edgeupdate -Force
Set-Service edgeupdate -StartupType Disabled
Stop-Service edgeupdatem -Force
Set-Service edgeupdatem -StartupType Disabled
Step 4 – Remove Scheduled Tasks
Delete Edge Update scheduled tasks.
Typical task names:
- MicrosoftEdgeUpdateTaskMachineCore
- MicrosoftEdgeUpdateTaskMachineUA
Removing them prevents automatic reinstallation attempts.
Step 5 – Uninstall Microsoft Edge
Locate the newest setup.exe.
Run:
setup.exe --uninstall --system-level --force-uninstall --verbose-logging
This removes the system installation when permitted.
Why Edge Sometimes Remains Installed
Many administrators are surprised that Edge still appears under Apps & Features.
Reasons include:
- Windows protection
- Component servicing
- Enterprise servicing model
- Microsoft cumulative updates
- Registry entries
- Shared browser components
In many cases, the browser has been removed but the registration entry remains.
Removing Leftover Registry Entries
Sometimes only the uninstall registration remains.
Removing it only hides the program from Apps & Features.
It does NOT uninstall Microsoft Edge.
Microsoft Edge WebView2
Do NOT remove WebView2 unless absolutely necessary.
Many applications rely on it, including:
- Microsoft Office
- Teams
- Outlook
- Power BI
- Visual Studio
- Third-party ERP software
- Banking applications
- Accounting software
- Custom business software
Removing WebView2 can break applications.
Can Windows Reinstall Edge?
Yes.
Windows Update may reinstall Microsoft Edge after:
- Feature updates
- Servicing stack updates
- Cumulative updates
- Repair installs
Administrators may need to remove it again after major upgrades.
Disk Space Savings
Typical savings:
| Component | Approximate Space |
|---|---|
| Browser Files | 400–800 MB |
| Cache Per User | 100 MB–3 GB |
| Code Cache | 50–300 MB |
| GPU Cache | 20–100 MB |
| Service Worker Cache | 20–500 MB |
A 25-user RDS server may recover several gigabytes of storage after cleanup.
Best Practices
✔ Keep Google Chrome updated.
✔ Remove Edge only if it is never required.
✔ Keep WebView2 installed.
✔ Disable Edge Update services.
✔ Delete browser cache periodically.
✔ Use Group Policy to define Chrome as the default browser.
✔ Test business applications before removing Edge.
✔ Perform cleanup during maintenance windows.
Common Issues
Edge Still Appears in Apps & Features
Usually caused by leftover registry entries or Windows servicing.
Edge Reappears After Windows Update
Normal behavior after major Windows servicing.
Uninstall Command Does Nothing
Possible reasons:
- Edge already removed
- Wrong setup.exe version
- Browser running
- Administrative privileges missing
Applications Stop Working
Usually caused by removing WebView2 instead of only Microsoft Edge.
Advantages of Removing Edge
- Standardized browser environment
- Less storage usage
- Reduced maintenance
- Fewer background services
- Lower profile sizes
- Simplified administration
- Reduced user confusion
Disadvantages
- Windows Update may reinstall Edge
- Some Microsoft features expect Edge
- Certain applications launch Edge automatically
- Future updates may restore components
- Incorrect removal of WebView2 can break software
Conclusion
Removing Microsoft Edge from Windows Server 2019 is straightforward when performed correctly. Administrators should distinguish between the browser itself and the Microsoft Edge WebView2 Runtime, as the latter is required by many applications.
For Remote Desktop Services environments where Google Chrome is the standard browser, removing Edge, disabling update services, deleting user cache, and cleaning residual files can reclaim storage, simplify management, and improve consistency across all user sessions. Always validate critical business applications before removing browser components, and remember that future Windows updates may reinstall Microsoft Edge, requiring periodic maintenance.
#MicrosoftEdge #WindowsServer2019 #PowerShell #WindowsServer #ServerAdministration #ITPro #SysAdmin #WindowsAdmin #EdgeRemoval #GoogleChrome #BrowserManagement #RemoteDesktop #RDS #TerminalServer #ServerOptimization #WindowsTips #TechGuide #WindowsPowerShell #Microsoft #SystemAdministrator #ITInfrastructure #EnterpriseIT #ServerMaintenance #WindowsOptimization #DiskCleanup #CacheCleanup #BrowserCache #WindowsSecurity #SystemCleanup #EdgeBrowser #WindowsServerTips #ITSupport #TechTutorial #ServerPerformance #AdminTools #WindowsManagement #EnterpriseWindows #ProfileCleanup #AppData #StorageOptimization #GroupPolicy #WindowsScripts #BrowserCleanup #ITManagement #WindowsUpdate #TechArticle #ComputerAdministration #SystemPerformance #WindowsUtilities #TechExperts
Was this guide useful?
Your answer helps us keep BISONKB accurate and practical.