w10install/scripts/uninstall-edge.cmd

62 lines
2.4 KiB
Batchfile
Raw Permalink Normal View History

2021-01-10 18:45:55 +01:00
@echo off
set EDGEROOT="C:\Program Files (x86)\Microsoft\Edge"
set EDGEUPDATE="C:\Program Files (x86)\Microsoft\EdgeUpdate"
echo ####### %0 #######
2022-12-26 22:32:53 +01:00
rem is it installed?
reg query "HKLM\SOFTWARE\Microsoft\Active Setup\Installed Components\{9459C573-B17A-45AE-9F64-1857B5D58CEE}" /v StubPath 1>nul 2>&1
2022-12-26 21:40:25 +01:00
2022-12-26 22:32:53 +01:00
if %ERRORLEVEL% NEQ 0 (
2022-12-26 19:04:35 +01:00
echo EDGE browser is NOT installed!
echo ####### %0 #######
exit /b
)
2022-12-26 22:32:53 +01:00
rem get path for edge setup ...
FOR /F "skip=2 tokens=2* " %%a in ('reg query "HKLM\SOFTWARE\Microsoft\Active Setup\Installed Components\{9459C573-B17A-45AE-9F64-1857B5D58CEE}" /v StubPath') do set EDGESETUP=%%b
2022-12-26 21:40:25 +01:00
rem delete everthing before the word "Application" ...
call set EDGESETUP=%%EDGESETUP:*Application\=%%
rem delete everything after the \ ...
set "EDGESETUP=%EDGESETUP:\=" & rem."%"
echo found EDGE version [ %EDGESETUP% ] ...
set INSTALLER=Application\%EDGESETUP%\Installer
2022-12-26 19:04:35 +01:00
echo UNINSTALLING edge browser ...
2021-03-30 21:21:53 +02:00
%EDGEROOT%\%INSTALLER%\setup.exe --uninstall --system-level --verbose-logging --force-uninstall 2>nul
2021-03-22 00:39:55 +01:00
2023-01-22 21:18:28 +01:00
echo sleeping 5 seconds ...
2021-03-30 21:21:53 +02:00
ping 127.0.0.1 -n 5 >nul 2>&1
2021-01-10 18:45:55 +01:00
2022-12-26 19:04:35 +01:00
echo CLEANUP ...
2021-03-06 00:09:40 +01:00
rd /S /Q %EDGEROOT% 2>nul
rd /S /Q %EDGEUPDATE% 2>nul
2023-02-24 12:22:13 +01:00
del /F /Q "%PUBLIC%\Desktop\Microsoft Edge.lnk" 2>nul
del /F /Q "%PROGRAMDATA%\Microsoft\Windows\Start Menu\Programs\Microsoft Edge.lnk" 2>nul
del /F /Q "%APPDATA%\Microsoft\Windows\Start Menu\Programs\Microsoft Edge.lnk" 2>nul
del /F /Q "%USERPROFILE%\Desktop\Microsoft Edge.lnk" 2>nul
2021-03-06 00:09:40 +01:00
rd /S /Q "%PROGRAMDATA%\Microsoft\EdgeUpdate" 2>nul
2021-01-10 23:14:52 +01:00
2022-12-26 19:04:35 +01:00
echo REMOVING edge browser update task ...
powershell -Command "Get-ScheduledTask | Where-Object {$_.Taskname -match 'EdgeUpdate'} | Unregister-ScheduledTask -Confirm:$false"
echo BLOCKING further edge updates ...
2021-01-12 20:23:36 +01:00
reg add "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\EdgeUpdate" ^
2023-02-08 16:12:23 +01:00
/v "DoNotUpdateToEdgeWithChromium" /d 1 /t REG_DWORD /f
2022-12-26 19:04:35 +01:00
2022-12-26 23:01:21 +01:00
echo REMOVING active setup registry key ...
2022-12-26 21:40:25 +01:00
reg delete "HKLM\SOFTWARE\Microsoft\Active Setup\Installed Components\{9459C573-B17A-45AE-9F64-1857B5D58CEE}" /f > NUL 2>&1
2021-01-12 20:23:36 +01:00
2022-12-26 23:01:21 +01:00
echo REMOVING edge update from apps list ...
reg delete "HKLM\SOFTWARE\WOW6432Node\Microsoft\Windows\CurrentVersion\Uninstall\Microsoft Edge Update" /f 1>nul 2>&1
echo REMOVING EDGE from apps list ...
reg delete "HKLM\SOFTWARE\WOW6432Node\Microsoft\Windows\CurrentVersion\Uninstall\Microsoft Edge" /f 1>nul 2>&1
2022-12-26 22:32:53 +01:00
2021-01-10 18:45:55 +01:00
echo ####### %0 #######