.
This commit is contained in:
parent
2dd372777b
commit
e6cbf1653b
@ -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.
|
||||
|
||||
|
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