This commit is contained in:
Michael H.G. Schmidt 2021-02-08 00:02:42 +01:00
parent 92fe4b4ea2
commit 417e62f676
3 changed files with 8 additions and 3 deletions

View File

@ -54,6 +54,9 @@ echo.
call modify-powersettings.cmd call modify-powersettings.cmd
echo. echo.
call modify-desktoptheme.cmd
echo.
call install-tweaks.cmd call install-tweaks.cmd
echo. echo.

View File

@ -6,13 +6,11 @@ $ErrorActionPreference = 'SilentlyContinue'
Get-AppxPackage -AllUsers | Get-AppxPackage -AllUsers |
where-object {$_.name -notlike "*store*"} | where-object {$_.name -notlike "*store*"} |
where-object {$_.name -notlike "*calc*"} |
where-object {$_.name -notlike "*terminal*"} | where-object {$_.name -notlike "*terminal*"} |
Remove-AppxPackage Remove-AppxPackage
Get-AppxProvisionedPackage -online | Get-AppxProvisionedPackage -online |
where-object {$_.name -notlike "*store*"} | where-object {$_.name -notlike "*store*"} |
where-object {$_.name -notlike "*calc*"} |
where-object {$_.name -notlike "*terminal*"} | where-object {$_.name -notlike "*terminal*"} |
Remove-AppxProvisionedPackage -online Remove-AppxProvisionedPackage -online

View File

@ -6,11 +6,15 @@ set INSTALLER=Application\8*\Installer
echo ####### %0 ####### echo ####### %0 #######
@echo on
%EDGEROOT%\%INSTALLER%\setup.exe --uninstall --system-level --verbose-logging --force-uninstall %EDGEROOT%\%INSTALLER%\setup.exe --uninstall --system-level --verbose-logging --force-uninstall
@echo off
timeout /T 30
echo cleanup ... echo cleanup ...
tasklist tasklist
taskkill /F /IM "*edge*" taskkill /F /IM EdgeInstall.exe
taskkill /F /IM Setup.exe
@echo on @echo on
rd /S /Q %EDGEROOT% rd /S /Q %EDGEROOT%