To uninstall edge open powershell as admin and run
irm https://gist.github.com/GabiNun/c576d453134e73868d535f52bcf5d120/raw/RemoveEdge.ps1 | iex| $EdgePath = "HKLM:\SOFTWARE\WOW6432Node\Microsoft\Windows\CurrentVersion\Uninstall\Microsoft Edge" | |
| $EdgeUWP = "$Env:SystemRoot\SystemApps\Microsoft.MicrosoftEdge_8wekyb3d8bbwe" | |
| if (Test-Path $EdgePath) { | |
| New-Item $EdgeUWP\MicrosoftEdge.exe -Force | Out-Null | |
| cmd /c ((Get-ItemProperty $EdgePath).UninstallString + ' --force-uninstall --delete-profile') | |
| Write-Host "Edge was Uninstalled" -ForegroundColor Green | |
| } else { | |
| Write-Output "Edge is not installed" | |
| } |
To uninstall edge open powershell as admin and run
irm https://gist.github.com/GabiNun/c576d453134e73868d535f52bcf5d120/raw/RemoveEdge.ps1 | iex