How to Uninstall Microsoft Edge From Windows 11

Last Updated : 30 May, 2026

The built-in web browser that comes with Windows 11 is Microsoft Edge. That has become popular due to its efficiency, speed, and compatibility with Windows services. You can dispose of your Microsoft Edge in case you want, there are a few steps that you should comply with to get it achieved.

Methods to Uninstall Microsoft Edge From Windows 11

Even if Microsoft does not offer a smooth way to uninstall Edge, there are nonetheless methods to do away with it. This is an in-depth manual to show you how to remove Microsoft Edge from Windows 11.

Method 1: Uninstall via Settings

  • Step 1: Press the Windows key and "I" to open the Settings app
Uninstall-via-Settings---01
Uninstall via Settings - 01
  • Step 2: Now, Click on Apps to open the Apps menu.
Uninstall-via-Settings---02
Uninstall via Settings - 02
  • Step 3: Scroll down the listing of set-up apps to locate Microsoft Edge.
Uninstall-via-Settings---03
Uninstall via Settings - 03
  • Step 4: Now, Click on Microsoft Edge after which click on the Uninstall button. If the button isn't always clickable then it indicates that this model of Edge can't be uninstalled through this method.

Note: This method may only work for older versions of Microsoft Edge. For the new versions, follow the next method.

Method 2: Uninstall via Command Prompt

  • Step 1: Press Win S, type cmd, and then right-click on Command Prompt, and select Run as administrator.
Uninstall-via-Command-Prompt---01
Uninstall via Command Prompt - 01
  • Step 2: Find the Version Number of Microsoft Edge.
Uninstall-via-Command-Prompt---02
Uninstall via Command Prompt - 02
  • Step 3: Navigate to the Edge installation listing by using coming into the following command.
cd %PROGRAMFILES(X86)%\Microsoft\Edge\Application
Uninstall-via-Command-Prompt---03
Uninstall via Command Prompt - 03
  • Step 4: Use the dir command to list the contents of the directory. Look for the folder named with the version amount (e.g., 90.0.818.66).
Uninstall-via-Settings---04
Uninstall via Settings - 04
  • Step 5: You must use the version variety that you positioned in the preceding step inside the following command.
setup.exe --uninstall --system-level --verbose-logging --force-uninstall

For example, if your version is 90.0.818.66, the command would be:

"C:\Program Files (x86)\Microsoft\Edge\Application\90.0.818.66\Installer\setup.exe" --uninstall --system-level --verbose-logging --force-uninstall
  • Step 6: After jogging the command, you must restart your computer to finish the uninstallation system.

Method 3: Use Windows PowerShell

  • Step 1: Press the Windows button plus X and pick out Windows PowerShell (Admin).
  • Step 2: Enter the following command to list all hooked-up programs and locate Microsoft Edge.
Get-AppxPackage | Select Name, PackageFullName
  • Step 3: MicrosoftEdge within the list and word the PackageFullName.
  • Step 4: Use the Package Full Name from the preceding step inside the following command.
Get-AppxPackage *MicrosoftEdge* | Remove-AppxPackage
  • Step 5: Restart Your Computer: After going for walks the command, restart your laptop.
Comment