Microsoft Edge ships as the default web browser on Windows 10 and Windows 11, and its tight integration with the operating system makes it notoriously difficult to remove. Yet changes driven by regulatory pressure and persistent user demand have opened a few legitimate avenues to uninstall it—though none work universally. This guide details every known method, the exact scenarios where they apply, and the risks involved.

Why Microsoft Edge can’t be uninstalled like a normal app

Edge is classified as a system component on consumer Windows editions. The standard “Uninstall” button is deliberately missing from Settings > Apps, and even using PowerShell to strip it away often fails because Windows treats it as essential. Microsoft’s support page bluntly states, “You can’t uninstall Microsoft Edge.” That’s still true for the majority of users, but two exceptions have emerged.

Exception 1: The European Economic Area (EEA) uninstall option

In November 2023, Microsoft began rolling out changes to comply with the Digital Markets Act (DMA) in the European Economic Area. Starting with Windows 11 version 23H2 (build 22631.2792 and later), users in EEA countries—including all EU member states, plus Iceland, Liechtenstein, and Norway—gain the ability to uninstall Edge through the usual Settings interface. The same capability also extends to unlinking Microsoft Bing from the search experience and removing the Copilot feature entirely.

To check if you have this option:

  1. Open Settings > Apps > Installed apps.
  2. Locate Microsoft Edge in the list.
  3. Click the three-dot menu and see if Uninstall appears.

The button will only be present if Windows detects you are in an EEA region and you have installed the DMA-compliant update. Microsoft officially documents this as a one-time opportunity: once Edge is removed, it won’t be reinstalled automatically unless you later download it from the web. Notably, the uninstall does not remove the WebView2 runtime, which many applications rely upon to display web content, so third-party apps continue to function.

If you are outside the EEA, Windows still hides the uninstall option. However, you can sometimes trick the system by changing your device’s region to an EEA country and restarting—though this may violate Microsoft’s terms of service and is not guaranteed.

Exception 2: Using the Edge installer’s hidden uninstall switch

A more universal—but fragile—method invokes the same installer executable that put Edge on your PC. The standalone Chromium-based Edge installer, MicrosoftEdgeSetup.exe, accepts a /uninstall command-line argument that attempts to remove the browser. This approach works best on systems where Edge was manually sideloaded (for example, on an LTSC edition or an older Windows 10 build that didn’t ship with the new Edge).

Here’s the exact procedure:

  1. Download the latest Edge installer from microsoft.com/edge. (It’s a small bootstrap executable.)
  2. Open Command Prompt as Administrator.
  3. Navigate to the folder containing the installer, then run:
    MicrosoftEdgeSetup.exe /uninstall /force
    The /force switch suppresses confirmation prompts.
  4. Restart your computer.

The vast majority of Windows 10 and 11 installations will see the command fail silently or return quickly without any visible effect. That’s because the system-resident version of Edge is not tracked by the installer’s package manager. When the command does succeed, it removes the user-facing browser but typically leaves WebView2 alone. If you later regret the decision, you can reinstall Edge from Microsoft’s website; the fresh copy will again be managed by the installer and can be uninstalled the same way in the future.

PowerShell: forceful removal with severe side effects

Advanced users sometimes attempt to rip out the Edge package using PowerShell. The commands below target the modern app package registered for all users:

Get-AppxPackage -AllUsers *MicrosoftEdge* | Remove-AppxPackage -AllUsers

On most consumer editions, however, this returns an error because the package is part of the OS image and protected by servicing. Even on older Windows 10 releases where the package is removable, you may break OS components that silently depend on Edge—like the taskbar search box, the Windows Widgets panel, and parts of the Settings app. There are documented cases where uninstalling Edge via PowerShell causes File Explorer to crash or the Start menu to become unresponsive.

If you insist on trying: Create a full system restore point before executing the command. Do not run it on a production machine. After removal, you can test basic functions and use sfc /scannow and DISM /Online /Cleanup-Image /RestoreHealth to repair any damage, but success is not guaranteed.

Group Policy: the safest way to “remove” Edge without deleting it

For enterprise and education environments—or any Windows Pro/Enterprise user comfortable with Group Policy—you can effectively hide Edge and block its launch without touching system files. This is the recommended Microsoft-sanctioned method when the DMA uninstall option is not available.

Option A: Disable all Edge shortcuts and file associations

  1. Download the Microsoft Edge administrative templates from the Microsoft Download Center.
  2. Open Local Group Policy Editor (gpedit.msc).
  3. Navigate to Computer Configuration > Administrative Templates > Microsoft Edge.
  4. Enable the policy “Prevent desktop shortcut creation upon installation” and “Prevent the First Run page from opening”.
  5. Under Computer Configuration > Administrative Templates > Windows Components > File Explorer, enable “Turn off Microsoft Edge as the default PDF handler” to force PDFs to open in another app.
  6. To remove Edge from the Start menu and taskbar, you can combine these policies with a simple PowerShell script deployed via Group Policy startup:
    powershell Remove-Item “$env:ProgramData\Microsoft\Windows\Start Menu\Programs\Microsoft Edge.lnk” -Force Remove-Item “$env:APPDATA\Microsoft\Internet Explorer\Quick Launch\User Pinned\TaskBar\Microsoft Edge.lnk” -Force

Option B: Block Edge from running entirely

Enable the Group Policy “Allow Microsoft Edge Side by Side browser experience” and set it to “Disabled”. This policy blocks Microsoft Edge from running on the device. With Edge blocked, Windows will prompt you to choose another browser when opening HTML files or links.

Neither option actually “uninstalls” Edge, but they make it practically invisible and unavailable. Microsoft recommends this approach over aggressive removal methods that can destabilize the OS.

Third-party “Edge removal” tools: buyer beware

A quick web search turns up dozens of free utilities claiming to “completely uninstall Edge.” Most work by deleting browser files and registry keys by brute force. Common tools include Edge Blocker, WPD, and various “Windows debloater” scripts. While some may succeed in removing Edge, they often cause collateral damage:

  • Windows Update may fail to install cumulative updates because the servicing stack expects Edge to be present.
  • Microsoft Office and OneDrive may lose their embedded web views.
  • Application Guard for Edge and other security features stop working.
  • The removal is rarely clean; leftover entries can confuse the OS and lead to cryptic error messages.

Use these tools only if you fully understand the risks and are prepared to restore a system backup. There is no officially endorsed third-party uninstaller for Edge.

What happens after Edge is removed?

Assuming you successfully uninstall Edge via the DMA setting or the installer switch, Windows will:

  • Prompt you to choose a default browser the next time a web link is clicked.
  • Stop using Edge as the implicit handler for PDF files, .mhtml, and .svg files—those will fall back to the next available app.
  • Retain the WebView2 runtime, which is a separate component needed by many desktop applications. You can manually uninstall WebView2 from “Apps & Features”, but doing so may break apps like Microsoft Teams, Outlook, and third-party apps that embed web content.

If you ever need to get Edge back, simply download the installer from microsoft.com/edge. Reinstalling will restore the browser fully but will not make it immune to future uninstalls if your system remains eligible for the DMA method.

Frequently asked questions

Q: Does Microsoft allow uninstalling Edge on Windows 10?
Only if you are in the EEA and have installed the same DMA update that Windows 11 received. As of January 2025, Microsoft has not ported the DMA changes to Windows 10, though the company has announced it will bring the change to Windows 10 22H2 by the end of 2025.

Q: Can I uninstall Edge from an LTSC or IoT edition?
Yes, LTSC editions ship without the new Edge, but if you install Edge Standalone, the installer’s /uninstall switch works normally because Edge is treated as an optional desktop application.

Q: Will uninstalling Edge improve system performance?
Marginally—Edge background processes will no longer run, but the impact is typically less than 50 MB of RAM and negligible CPU. Windows itself caches certain web components through Edge, so removing it may actually increase CPU usage when those caches can’t be reused.

Q: I uninstalled Edge and now my Start menu search is broken. What do I do?
Reinstall Edge immediately. If that doesn’t fix it, open an elevated PowerShell session and run Get-AppXPackage -AllUsers | Foreach {Add-AppxPackage -DisableDevelopmentMode -Register “$($_.InstallLocation)\AppXManifest.xml”} to re-register system components. If still broken, perform an in-place upgrade repair install of Windows.

The bottom line

For users in the EEA, the official Settings uninstall mechanism is the cleanest, safest method and works exactly as advertised. Everyone else must accept that Edge cannot be truly removed without risking system stability. The Group Policy approach offers a practical middle ground: you gain the freedom to use another browser while leaving the OS intact. No matter which path you choose, prepare for the possibility that Edge will reappear after a major feature update—Microsoft’s commitment to not reinstalling it only applies to the DMA uninstall route.