d2jsp
Log InRegister
d2jsp Forums > Off-Topic > Computers & IT > Ie / Edge
12Next
Add Reply New Topic New Poll
Member
Posts: 7,956
Joined: Aug 23 2006
Gold: 0.00
May 12 2025 03:59am
Using Windows 11 (also gross)

Is there a way to get this off my computer?

Easily just as bad as Chrome if not worse.

Try using CCleaner, would not let me take it off.

Removed context and auto start as well.
Member
Posts: 26,862
Joined: Feb 27 2013
Gold: 4,445.68
May 12 2025 10:38am
No, it needs to be installed for stuff like your taskbar I believe. Shouldn’t take up too much space though
Member
Posts: 7,956
Joined: Aug 23 2006
Gold: 0.00
May 12 2025 10:56am
It looks like there is away to remove it via DOS/Command Prompt. However the code they suggested I use is not finding it. There are said concerns about programs like media player and photos not working, but I don't use those anyway. It's not really the space I am worried about. Too many vulnerabilities, regardless where I go. Never cared for IE or Chrome, usually use Firefox/FF Focus because of better security.
Member
Posts: 26,862
Joined: Feb 27 2013
Gold: 4,445.68
May 12 2025 09:45pm
It looks like there is away to remove it via DOS/Command Prompt. However the code they suggested I use is not finding it. There are said concerns about programs like media player and photos not working, but I don't use those anyway. It's not really the space I am worried about. Too many vulnerabilities, regardless where I go. Never cared for IE or Chrome, usually use Firefox/FF Focus because of better security.


I wouldn't worry about vulnerabilities if you don't use it as a browser and just ignore it's existence. Some updates even automatically reinstall it(Like the latest update 24H2 for example)

Not sure what you tried but this should work if you run powershell as admin and copy+paste. I'd test it but i'm still on Win10

Code
$EdgePackage = Get-AppxPackage -Name Microsoft.MicrosoftEdge | Select-Object -ExpandProperty PackageFullName
if ($EdgePackage) {
Remove-AppxPackage -Package $EdgePackage -AllUsers -ErrorAction SilentlyContinue
Write-Output "Microsoft Edge has been removed for all users."
} else {
Write-Output "Microsoft Edge is not installed or cannot be found."
}

$EdgePath = "C:\Program Files (x86)\Microsoft\Edge\Application"
if (Test-Path "$EdgePath") {
$EdgeVersion = Get-ChildItem "$EdgePath" | Where-Object { $_.PSIsContainer } | Select-Object -ExpandProperty Name -Last 1
$UninstallCmd = "$EdgePath\$EdgeVersion\Installer\setup.exe"

if (Test-Path $UninstallCmd) {
Start-Process -FilePath $UninstallCmd -ArgumentList "--uninstall --system-level --verbose-logging --force-uninstall" -NoNewWindow -Wait
Write-Output "Microsoft Edge has been forcefully uninstalled."
} else {
Write-Output "Edge uninstaller not found."
}
} else {
Write-Output "Edge is not installed."
}


Uninstaller should be in C:\Program Files (x86)\Microsoft\Edge\Application somewhere if you want to manually search for it

This post was edited by MrSK on May 12 2025 09:47pm
Member
Posts: 7,956
Joined: Aug 23 2006
Gold: 0.00
May 13 2025 08:23pm
Do I have to run the power-shell in 86 too?

Looks like this might work, going to mess around with it a little bit. You are the man, ty. I'll let you know how it goes. Appreciate the help.
Member
Posts: 26,862
Joined: Feb 27 2013
Gold: 4,445.68
May 13 2025 10:16pm
Do I have to run the power-shell in 86 too?

Looks like this might work, going to mess around with it a little bit. You are the man, ty. I'll let you know how it goes. Appreciate the help.


Nah, you only have to go in the x86 folder if you don't want to do the powershell script and want to manually look for the uninstaller
Member
Posts: 7,956
Joined: Aug 23 2006
Gold: 0.00
May 15 2025 07:13am
The heck. Can't touch Chromium. Ah well, I think I'll do what you said and just mute it more or less.

Thank you.
Member
Posts: 26,862
Joined: Feb 27 2013
Gold: 4,445.68
May 15 2025 10:50am
The heck. Can't touch Chromium. Ah well, I think I'll do what you said and just mute it more or less.

Thank you.


Oh weird, that should’ve just uninstalled edge and not chromium.

Leaving it installed is definitely fine though. Never had a client run into an issue if they never used it, and I’m sure government entities would throw a fit if it was a concern
Member
Posts: 7,956
Joined: Aug 23 2006
Gold: 0.00
May 15 2025 11:02am
Got it with Geek Uninstaller :thumbsup:
Member
Posts: 1,402
Joined: Feb 25 2024
Gold: 120.00
May 24 2025 02:09pm
Not sure what you tried but this should work if you run powershell as admin and copy+paste. I'd test it but i'm still on Win10
jfc, at this point just Linux, windows just aint worth the hassle

like, i boot up my pc and it's at 600 MB RAM usage and it's ready to play the videogames, u boot up ur windows and it's at what, 2GB? 3GB? more?

by using a minimalist operating system, this allows to min/max the RAM usage so can load up even more D2R instances and play even more of the videogames
Go Back To Computers & IT Topic List
12Next
Add Reply New Topic New Poll