Hi guys! In the latest Windows 11, 25H2, is it possible to uninstall Edge manually from the Apps list of Windows. Unfortunately, I have not found yet a command to do that with simple command lines (prompt / powershell). NOTE: I've also seen that in: Code: HKEY_LOCAL_MACHINE\SOFTWARE\WOW6432Node\Microsoft\Windows\CurrentVersion\Uninstall\Microsoft Edge it's present the following string value: Code: UninstallString = "C:\Program Files (x86)\Microsoft\Edge\Application\140.0.3485.66\Installer\setup.exe" --uninstall --msedge --system-level --verbose-logging So, I tried to open as admin the command prompt and I've copied that command, but it doesn't do anything. Do you know some tricks? Thanks!!
That will break some things in OS why not just disable its updates and ignore? Edge is uninstallable only for EEA regions, and IoT (or LTSC?) editions
Hi mate, in your opinion, these reg keys to disable Edge could give problems? Code: REG ADD HKCU\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer /v DisallowRun /t REG_DWORD /d 1 /f >NUL REG ADD HKCU\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer\DisallowRun /v 1 /t REG_SZ /d msedge.exe /f >NUL DEL /F /Q "%ProgramData%\Microsoft\Windows\Start Menu\Programs\Microsoft Edge.lnk" DEL /F /Q "%Public%\Desktop\Microsoft Edge.lnk"