w10install/scripts/autoconfig-all.cmd

146 lines
3.0 KiB
Batchfile
Raw Normal View History

2021-01-12 17:01:34 +01:00
@echo off
rem this script is doing most of the work ...
set T=c:\TEMP
set TOOLS=c:\tools
set SCRIPTS=%TOOLS%\scripts
2021-01-12 20:23:36 +01:00
set LOG=%SCRIPTS%\autoconfig-all.txt
if not "%1"=="STDOUT_TO_FILE" %0 STDOUT_TO_FILE %* 1>%LOG% 2>&1
shift /1
2021-01-12 17:01:34 +01:00
2021-01-12 19:11:44 +01:00
echo.
2021-01-12 17:01:34 +01:00
echo ####### %0 #######
2021-01-12 20:23:36 +01:00
date /t
time /t
echo.
2021-01-12 17:01:34 +01:00
echo creating %T% ...
mkdir %T% 1>nul 2>nul
echo cd to %SCRIPTS% ...
cd /D %SCRIPTS%
echo moving files in deploy folder to %TOOLS% ...
2021-01-12 19:11:44 +01:00
move /Y deploy\* %TOOLS%
2021-01-12 17:01:34 +01:00
rmdir deploy 1>nul 2>nul
2021-01-12 19:11:44 +01:00
echo.
echo #######################
echo ### GLOBAL settings ###
echo #######################
echo.
2021-01-12 17:01:34 +01:00
rem echo DISABLE firewall ...
rem netsh advfirewall set allprofiles state off
2021-01-12 19:11:44 +01:00
rem echo.
2021-01-12 17:01:34 +01:00
rem allow execution of any powershell script ...
powershell -Command "Set-ExecutionPolicy -ExecutionPolicy Bypass -Scope LocalMachine"
powershell -Command ^
"$T=Get-ExecutionPolicy ; if ($T -eq 'Bypass') { ^
write-host 'POWERSHELL: Execution Policy was set to BYPASS' ^
} ^
else { ^
write-host 'ERROR: CANNOT SET Execution Policy to BYPASS !' ^
}"
echo.
2021-01-12 19:47:00 +01:00
echo setting PATH variable (for all users) ...
2021-01-12 17:01:34 +01:00
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++" ^
2021-01-12 19:11:44 +01:00
/v PATH /t REG_EXPAND_SZ /f
echo.
2021-01-12 17:01:34 +01:00
rem changing power configuration ...
call modify-powersettings.cmd
2021-01-12 19:11:44 +01:00
echo.
2021-01-12 17:01:34 +01:00
rem installing tweaks ...
call install-tweaks.cmd
2021-01-12 19:11:44 +01:00
echo.
2021-01-12 17:01:34 +01:00
2021-01-12 19:11:44 +01:00
echo #######################
echo ### UNINSTALL tasks ###
echo #######################
echo.
2021-01-12 17:01:34 +01:00
2021-01-12 19:11:44 +01:00
rem uninstall ALL Apps (but keep the store) ...
2021-01-12 17:01:34 +01:00
powershell -Command .\uninstall-apps.ps1
2021-01-12 19:11:44 +01:00
echo.
2021-01-12 17:01:34 +01:00
rem uninstall OneDrive completely ...
call uninstall-onedrive.cmd
2021-01-12 19:11:44 +01:00
echo.
2021-01-12 17:01:34 +01:00
rem uninstall Edge completely ...
call uninstall-edge.cmd
2021-01-12 19:11:44 +01:00
echo.
2021-01-12 17:01:34 +01:00
2021-01-12 19:11:44 +01:00
echo #####################
echo ### INSTALL tasks ###
echo #####################
echo.
2021-01-12 17:01:34 +01:00
call install-logonscript.cmd
2021-01-12 19:11:44 +01:00
echo.
2021-01-12 17:01:34 +01:00
call install-desktopicons.cmd
2021-01-12 19:11:44 +01:00
echo.
2021-01-12 17:01:34 +01:00
call install-git.cmd
2021-01-12 19:11:44 +01:00
echo.
2021-01-12 17:01:34 +01:00
2021-01-12 19:11:44 +01:00
rem fuck you microsoft ...
2021-01-12 17:01:34 +01:00
call install-openshell.cmd
2021-01-12 19:11:44 +01:00
echo.
2021-01-12 17:01:34 +01:00
2021-01-12 19:11:44 +01:00
rem fuck you google ...
2021-01-12 17:01:34 +01:00
call install-firefox.cmd
2021-01-12 19:11:44 +01:00
echo.
2021-01-12 17:01:34 +01:00
call install-antivir.cmd
2021-01-12 19:11:44 +01:00
echo.
2021-01-12 17:01:34 +01:00
2021-01-12 19:11:44 +01:00
echo #####################
echo ### DISABLE tasks ###
echo #####################
echo.
2021-01-12 17:01:34 +01:00
echo disabling logon screen background ...
reg add "HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\System" ^
/v DisableLogonBackgroundImage ^
/t REG_DWORD /d 1 /f
2021-01-12 19:11:44 +01:00
echo.
2021-01-12 17:01:34 +01:00
rem disable autologon for support user ...
call disable-autologon.cmd
2021-01-12 19:11:44 +01:00
echo.
2021-01-12 17:01:34 +01:00
2021-01-12 19:11:44 +01:00
echo #####################
echo ### CLEANUP tasks ###
echo #####################
echo.
2021-01-12 17:01:34 +01:00
rem this must be done as late as possible ... stupid os problem
powershell -Command .\cleanup-tiles.ps1
2021-01-12 19:11:44 +01:00
echo.
2021-01-12 17:01:34 +01:00
2021-01-12 19:11:44 +01:00
rem ... stupid os problem #2
2021-01-12 17:01:34 +01:00
call cleanup-startmenu.cmd
2021-01-12 19:11:44 +01:00
echo.
2021-01-12 17:01:34 +01:00
rem echo ENABLE firewall ...
rem netsh advfirewall set allprofiles state on
2021-01-12 19:11:44 +01:00
rem echo.
2021-01-12 17:01:34 +01:00
2021-01-12 20:23:36 +01:00
echo rebooting ...
shutdown -g -t 0
echo.
date /t
time /t
2021-01-12 17:01:34 +01:00
echo ####### %0 #######
echo READY.
2021-01-12 20:23:36 +01:00