.
This commit is contained in:
parent
2dd372777b
commit
e6cbf1653b
@ -46,17 +46,12 @@ powershell -Command ^
|
|||||||
}"
|
}"
|
||||||
echo.
|
echo.
|
||||||
|
|
||||||
echo setting PATH variable (for all users) ...
|
call modify-path.cmd
|
||||||
reg add "HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Session Manager\Environment" ^
|
|
||||||
/d "%SYSTEMROOT%;%SYSTEMROOT%\system32;%SYSTEMROOT%\system32\wbem;%SYSTEMROOT%\system32\WindowsPowerShell\v1.0;%TOOLS%;%TOOLS%\git\bin;%TOOLS%\git\usr\bin;%TOOLS%\notepad++" ^
|
|
||||||
/v PATH /t REG_EXPAND_SZ /f
|
|
||||||
echo.
|
echo.
|
||||||
|
|
||||||
rem changing power configuration ...
|
|
||||||
call modify-powersettings.cmd
|
call modify-powersettings.cmd
|
||||||
echo.
|
echo.
|
||||||
|
|
||||||
rem installing tweaks ...
|
|
||||||
call install-tweaks.cmd
|
call install-tweaks.cmd
|
||||||
echo.
|
echo.
|
||||||
|
|
||||||
@ -69,11 +64,9 @@ rem uninstall ALL Apps (but keep the store) ...
|
|||||||
powershell -Command .\uninstall-apps.ps1
|
powershell -Command .\uninstall-apps.ps1
|
||||||
echo.
|
echo.
|
||||||
|
|
||||||
rem uninstall OneDrive completely ...
|
|
||||||
call uninstall-onedrive.cmd
|
call uninstall-onedrive.cmd
|
||||||
echo.
|
echo.
|
||||||
|
|
||||||
rem uninstall Edge completely ...
|
|
||||||
call uninstall-edge.cmd
|
call uninstall-edge.cmd
|
||||||
echo.
|
echo.
|
||||||
|
|
||||||
@ -107,13 +100,12 @@ echo ### DISABLE tasks ###
|
|||||||
echo #####################
|
echo #####################
|
||||||
echo.
|
echo.
|
||||||
|
|
||||||
echo disabling logon screen background ...
|
call disable-logonbackground.cmd
|
||||||
reg add "HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\System" ^
|
echo.
|
||||||
/v DisableLogonBackgroundImage ^
|
|
||||||
/t REG_DWORD /d 1 /f
|
call disable-meetnow.cmd
|
||||||
echo.
|
echo.
|
||||||
|
|
||||||
rem disable autologon for support user ...
|
|
||||||
call disable-autologon.cmd
|
call disable-autologon.cmd
|
||||||
echo.
|
echo.
|
||||||
|
|
||||||
|
10
scripts/disable-logonbackground.cmd
Normal file
10
scripts/disable-logonbackground.cmd
Normal file
@ -0,0 +1,10 @@
|
|||||||
|
@echo off
|
||||||
|
|
||||||
|
echo ####### %0 #######
|
||||||
|
|
||||||
|
echo disabling logon screen background ...
|
||||||
|
reg add "HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\System" ^
|
||||||
|
/v DisableLogonBackgroundImage /t REG_DWORD /d 1 /f
|
||||||
|
|
||||||
|
echo ####### %0 #######
|
||||||
|
|
11
scripts/disable-meetnow.cmd
Normal file
11
scripts/disable-meetnow.cmd
Normal file
@ -0,0 +1,11 @@
|
|||||||
|
@echo off
|
||||||
|
|
||||||
|
echo ####### %0 #######
|
||||||
|
|
||||||
|
echo disabling MeetNow for ALL users ...
|
||||||
|
reg add "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\Explorer" ^
|
||||||
|
/v "HideSCAMeetNow" /d 1 /t REG_DWORD /f
|
||||||
|
echo FUCK YOU MICROSOFT !
|
||||||
|
|
||||||
|
echo ####### %0 #######
|
||||||
|
|
11
scripts/modify-path.cmd
Normal file
11
scripts/modify-path.cmd
Normal file
@ -0,0 +1,11 @@
|
|||||||
|
@echo off
|
||||||
|
|
||||||
|
echo ####### %0 #######
|
||||||
|
|
||||||
|
echo setting PATH variable (for all users) ...
|
||||||
|
reg add "HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Session Manager\Environment" ^
|
||||||
|
/d "%SYSTEMROOT%;%SYSTEMROOT%\system32;%SYSTEMROOT%\system32\wbem;%SYSTEMROOT%\system32\WindowsPowerShell\v1.0;%TOOLS%;%TOOLS%\git\bin;%TOOLS%\git\usr\bin;%TOOLS%\notepad++" ^
|
||||||
|
/v PATH /t REG_EXPAND_SZ /f
|
||||||
|
|
||||||
|
echo ####### %0 #######
|
||||||
|
|
Loading…
Reference in New Issue
Block a user