How to Permanently Remove Microsoft Edge from Windows 11 via PowerShell

Trying to ditch Microsoft Edge on Windows 11? Yeah, it can be a bit of a headache. Windows loves to make it tricky to remove it, but here’s a pretty solid way to do it using PowerShell. It’s not foolproof — sometimes permissions can get in the way, or Edge might hold on stubbornly — but most of the time, it does the job. Just a heads-up: you’ll need admin access, and on some setups, you might have to give it a reboot or two if things don’t switch off immediately.

Step-by-step to nuke Microsoft Edge with PowerShell

This involves locating that sneaky Edge package in your system and then running a command to wipe it out. Think of it like deleting a stubborn app — but since Edge is built deep into Windows, you’ve got to do it properly.

Step 1: Open PowerShell as Administrator

Right-click the Start button, then select Windows Terminal (Admin) or Windows PowerShell (Admin). If prompted by User Account Control, click Yes. This is super important — without admin rights, Windows won’t let you uninstall system apps like Edge. No shortcuts around that, unfortunately.

Step 2: Find the Edge package

Type in this command:

Get-AppxPackage *MicrosoftEdge*

and press Enter. You’re asking PowerShell to list all packages related to Edge. The output can be a bit lengthy, but focus on the PackageFullName. That’s what we need for the next step.

Step 3: Copy the PackageFullName

Scroll through the results and find the line starting with PackageFullName. It usually looks something like Microsoft.MicrosoftEdge.Stable_XX.X.XXXX.XX_neutral__XXXXXX. Copy that full string. It’s crucial — on some setups, getting this right is what makes the difference between success and failure.

NOTE: On some machines, this command might not produce any output, or Edge could appear under a different ID. That’s when a bit of trial and error kicks in — you might need to run it a few times or tweak the command.

Step 4: Uninstall Edge by running

Remove-AppxPackage <PackageFullName>

Replace <PackageFullName> with the string you just copied. For example:

Remove-AppxPackage Microsoft.MicrosoftEdge.Stable_XX.X.XXXX.XX_neutral__XXXXXX

This is the main move — executing it should remove Edge or at least hide it from your apps list. Sometimes, you might need to run PowerShell again or do a quick reboot for it to fully vanish. On some setups, Edge might resist at first, but after a reboot or two, you should be able to say goodbye to it for good.

Step 5: Check if it worked

Just run:

Get-AppxPackage *MicrosoftEdge*

If nothing shows up, congrats — Edge is gone. If it’s still hanging around, try the removal command again or give your PC a reboot and check again.

Be aware: after updates or system repairs, sometimes Edge might pop back up — it’s Windows being Windows.

Some quick tips for the keen beans

  • Backup your data: Always a good idea before mucking about with system stuff — set a restore point if you can.
  • Follow the steps carefully: One typo and Windows might throw a tantrum or you could end up uninstalling the wrong thing.
  • Stable internet connection: Might be handy if updates run and you’re looking to install a different browser.
  • Check your permissions: No admin rights? This won’t work, mate.
  • Create a restore point: Better safe than sorry — especially when tinkering with core system apps.

FAQ Time

Why would someone want to remove Edge?

Honestly, some folks prefer other browsers like Chrome or Firefox, and Edge isn’t always the best fit for their workflows. Plus, it can add clutter or just be unwanted bloat in a leaner system.

Can Edge come back?

Yeah, no worries. Just reinstall it from the Microsoft Store or their website if you change your mind. Windows won’t keep it locked away forever.

Is it risky to uninstall Edge?

Generally okay if you’ve got another browser sorted. But watch out — some Windows features might rely on Edge, so be aware that things could behave a bit differently. Still, loads of folks have removed it without hassle.

Will removing Edge mess up Windows?

Probably not, but some default links or prompts might redirect to your new preferred browser instead. Also, updates can sometimes bring it back or re-enable it — it’s a bit of a game of whack-a-mole.

Can I get Edge back if I decide I need it later?

Absolutely. Just download and reinstall from Microsoft when you’re ready.

Summary

  • Open PowerShell as Admin
  • Search for the Edge package
  • Copy the PackageFullName
  • Run Remove-AppxPackage with that name
  • Check if it’s gone

Hopefully, that saves a few hours for someone. Windows will try to reattach Edge now and then, but you’ve got a fair shot at blocking it outright. Just remember: messing with system apps can be risky, so only do this if you’re comfortable with command lines and maybe set a restore point first. Good luck, legend!