w10install/scripts/uninstall-edge.cmd

13 lines
271 B
Batchfile
Raw Normal View History

2021-01-10 15:49:37 +01:00
@echo off
set EDGEROOT="C:\Program Files (x86)\Microsoft\Edge"
2021-01-10 16:42:07 +01:00
set INSTALLER=Application\8*\Installer
2021-01-10 15:49:37 +01:00
echo ####### %0 #######
2021-01-10 16:42:07 +01:00
%EDGEROOT%\%INSTALLER%\setup.exe --uninstall --system-level --verbose-logging --force-uninstall
2021-01-10 15:49:37 +01:00
rd /S /Q %EDGEROOT%
echo ####### %0 #######