New
#11
To uninstall Edge Chromium and block it from automatically getting reinstalled by Windows Update, I made a small batchfile. (Must be run as Administrator.)
Code:@ECHO OFF FOR /D %%D IN ("C:\Program Files (x86)\Microsoft\Edge\Application\*") DO "%%~fD\Installer\setup.exe" --uninstall --system-level --verbose-logging --force-uninstall 2> NUL PROMPT $G ECHO ON REG ADD HKLM\SOFTWARE\Microsoft\EdgeUpdate /v "DoNotUpdateToEdgeWithChromium" /t REG_DWORD /d 1 @pauSE