From e6cbf1653b6e5913815fe8988c3ef56ad7039449 Mon Sep 17 00:00:00 2001 From: "Michael H.G. Schmidt" Date: Tue, 12 Jan 2021 20:57:33 +0100 Subject: [PATCH] . --- scripts/autoconfig-all.cmd | 18 +++++------------- scripts/disable-logonbackground.cmd | 10 ++++++++++ scripts/disable-meetnow.cmd | 11 +++++++++++ scripts/modify-path.cmd | 11 +++++++++++ 4 files changed, 37 insertions(+), 13 deletions(-) create mode 100644 scripts/disable-logonbackground.cmd create mode 100644 scripts/disable-meetnow.cmd create mode 100644 scripts/modify-path.cmd diff --git a/scripts/autoconfig-all.cmd b/scripts/autoconfig-all.cmd index 4c8a3a8..fc6796e 100644 --- a/scripts/autoconfig-all.cmd +++ b/scripts/autoconfig-all.cmd @@ -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. diff --git a/scripts/disable-logonbackground.cmd b/scripts/disable-logonbackground.cmd new file mode 100644 index 0000000..06cbb69 --- /dev/null +++ b/scripts/disable-logonbackground.cmd @@ -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 ####### + diff --git a/scripts/disable-meetnow.cmd b/scripts/disable-meetnow.cmd new file mode 100644 index 0000000..db83778 --- /dev/null +++ b/scripts/disable-meetnow.cmd @@ -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 ####### + diff --git a/scripts/modify-path.cmd b/scripts/modify-path.cmd new file mode 100644 index 0000000..6e57685 --- /dev/null +++ b/scripts/modify-path.cmd @@ -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 ####### +