This commit is contained in:
Michael H.G. Schmidt 2021-01-12 20:57:33 +01:00
parent 2dd372777b
commit e6cbf1653b
4 changed files with 37 additions and 13 deletions

View File

@ -46,17 +46,12 @@ powershell -Command ^
}"
echo.
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
call modify-path.cmd
echo.
rem changing power configuration ...
call modify-powersettings.cmd
echo.
rem installing tweaks ...
call install-tweaks.cmd
echo.
@ -69,11 +64,9 @@ rem uninstall ALL Apps (but keep the store) ...
powershell -Command .\uninstall-apps.ps1
echo.
rem uninstall OneDrive completely ...
call uninstall-onedrive.cmd
echo.
rem uninstall Edge completely ...
call uninstall-edge.cmd
echo.
@ -107,13 +100,12 @@ echo ### DISABLE tasks ###
echo #####################
echo.
echo disabling logon screen background ...
reg add "HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\System" ^
/v DisableLogonBackgroundImage ^
/t REG_DWORD /d 1 /f
call disable-logonbackground.cmd
echo.
call disable-meetnow.cmd
echo.
rem disable autologon for support user ...
call disable-autologon.cmd
echo.

View 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 #######

View 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
View 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 #######