.
This commit is contained in:
parent
92fe4b4ea2
commit
417e62f676
@ -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.
|
||||||
|
|
||||||
|
@ -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
|
||||||
|
|
||||||
|
@ -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%
|
||||||
|
Loading…
Reference in New Issue
Block a user