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
2023-01-01 13:09:14 +01:00
set SETTINGS = settings.cmd
2021-01-12 17:01:34 +01:00
set SCRIPTS = %TOOLS% \scripts
2021-02-03 06:49:13 +01:00
set LOG = %SCRIPTS% \autoconfig-all.txt
del /F %LOG% 1 > nul 2 > nul
if not " %1 " == " STDOUT_TO_FILE " %0 STDOUT_TO_FILE %* 1 > %LOG% 2 >& 1
shift /1
2021-01-12 20:23:36 +01:00
2021-03-29 08:36:45 +02:00
rem show window with logfile while running scripts ...
start %TOOLS% \logmonitor.exe %LOG%
2021-03-22 00:39:55 +01:00
2021-01-12 17:01:34 +01:00
echo ####### %0 #######
2021-02-03 06:49:13 +01:00
date /t
time /t
2021-01-12 20:23:36 +01:00
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%
2022-12-11 23:05:01 +01:00
rem SCRIPT settings ...
2023-01-01 13:09:14 +01:00
if EXIST %SETTINGS% (
2021-03-13 18:53:25 +01:00
echo loading settings ...
2023-01-01 13:09:14 +01:00
call %SETTINGS%
2021-03-13 18:53:25 +01:00
) else (
2023-01-01 13:09:14 +01:00
echo WARNING: [ %SETTINGS% ] not found!
2021-03-13 18:53:25 +01:00
echo setting defaults ...
2023-01-01 13:09:14 +01:00
set LANG = en-US
set windows_updates = 0
set logon_logo = 1
set install_firefox = 1
set install_aerolite = 1
set bgcol_R = 3
set bgcol_G = 131
set bgcol_B = 135
set explorer_quick_access = 1
set gitserver = github.com
set gitrepo = dummy
set searchdomains = localdomain
2021-03-13 18:53:25 +01:00
)
2021-01-12 17:01:34 +01:00
2021-03-31 01:11:03 +02:00
echo ++++++++++++++++++
2023-01-01 13:09:14 +01:00
echo LANG=%LANG%
2021-03-31 01:11:03 +02:00
echo windows_updates=%windows_updates%
2023-01-01 13:09:14 +01:00
echo logon_logo=%logon_logo%
2021-03-31 13:42:21 +02:00
echo install_firefox=%install_firefox%
2021-04-11 22:34:30 +02:00
echo install_aerolite=%install_aerolite%
2023-01-01 13:09:14 +01:00
echo bgcol_R=%bgcol_R%
echo bgcol_G=%bgcol_G%
echo bgcol_B=%bgcol_B%
echo explorer_quick_access=%explorer_quick_access%
echo gitserver=%gitserver%
echo gitrepo=%gitrepo%
2022-12-29 21:28:59 +01:00
echo searchdomains=%searchdomains%
2022-12-11 23:05:01 +01:00
echo ++++++++++++++++++
echo .
2023-01-01 13:09:14 +01:00
2022-12-11 23:05:01 +01:00
echo #######################
echo ### UNPACK and COPY ###
echo #######################
echo .
2021-02-28 14:10:59 +01:00
rem 7-zip is essential for other scripts ...
call unpack-7zip.cmd
echo .
rem windows update blocker is in the zipfiles ...
call unpack-zipfiles.cmd
echo .
2021-02-28 15:24:20 +01:00
rem put vnc in place ...
call unpack-vnc.cmd
echo .
2021-02-28 14:10:59 +01:00
rem copy some other stuff ...
2021-03-13 18:53:25 +01:00
call copy-executables.cmd
2021-02-28 14:10:59 +01:00
echo .
2022-12-28 18:52:04 +01:00
echo #######################
echo ### MODIFICATIONS ###
echo #######################
echo .
rem this must be done EARLY!
if %windows_updates% == 0 (
call disable-updates.cmd
echo .
)
echo allow execution of any powershell scripts ...
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 .
echo enabling OS feature " NetFx3 " ...
2023-01-06 15:48:20 +01:00
dism /online /enable-feature /featurename:NetFx3 /All /Source:c:\sources\sxs /LimitAccess /NoRestart
2022-12-29 12:38:43 +01:00
echo .
2022-12-28 18:52:04 +01:00
call modify-path.cmd
echo .
2023-01-14 15:09:04 +01:00
call modify-windowsupdate.cmd
echo .
2022-12-28 18:52:04 +01:00
call modify-explorer.cmd
echo .
call modify-powersettings.cmd
echo .
call modify-taskbar.cmd
echo .
call modify-timeservers.cmd
echo .
call modify-searchdomains.cmd
echo .
echo #######################
echo ### UNINSTALL tasks ###
echo #######################
echo .
powershell -command .\uninstall-apps.ps1
echo .
2021-01-12 19:11:44 +01:00
echo #####################
echo ### INSTALL tasks ###
echo #####################
echo .
2021-01-12 17:01:34 +01:00
2021-02-27 23:45:38 +01:00
call install-tweaks.cmd
echo .
2021-02-03 12:42:10 +01:00
call install-adk.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-02-07 21:24:26 +01:00
powershell -command .\install-windowsterminal.ps1
2021-02-03 12:42:10 +01:00
echo .
2021-01-31 23:59:16 +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-03-31 13:42:21 +02:00
if %install_firefox% == 1 (
call install-firefox.cmd
echo .
)
2021-01-12 17:01:34 +01:00
2021-04-13 14:20:54 +02:00
call install-win32diskimager.cmd
echo .
2021-03-09 23:15:35 +01:00
call install-shortcuts.cmd
2021-02-03 12:42:10 +01:00
echo .
2021-03-02 14:21:58 +01:00
rem should be done as late as possible ...
call install-logonscript.cmd
echo .
2021-03-13 13:06:52 +01:00
echo add full access rights to all users on public icons ...
2021-02-28 22:17:02 +01:00
icacls %PUBLIC% \Desktop\*.lnk /grant Users:F
2021-03-13 13:06:52 +01:00
echo .
2021-02-28 22:17:02 +01:00
2021-03-13 13:06:52 +01:00
echo removing read-only flag on tools folder ...
2021-02-28 22:53:42 +01:00
attrib /S /D -R %TOOLS% \*
2021-03-13 13:06:52 +01:00
echo .
2021-02-28 22:53:42 +01:00
2022-12-28 18:52:04 +01:00
echo #####################
echo ### DISABLE tasks ###
echo #####################
echo .
call disable-accountpicture.cmd
echo .
call disable-logonbackground.cmd
echo .
call disable-meetnow.cmd
echo .
call disable-settingsheader.cmd
echo .
call disable-autologon.cmd
echo .
call disable-systemproxy.cmd
echo .
powershell -command .\disable-soundscheme.ps1
echo .
echo #####################
echo ### CLEANUP tasks ###
echo #####################
echo .
rem this must be done as late as possible ... stupid os problem #1
powershell -Command .\cleanup-tiles.ps1
echo .
rem ... stupid os problem #2
call cleanup-startmenu.cmd
echo .
rem ... stupid os problem #3
call cleanup-programlist.cmd
echo .
rem ... stupid os problem #4
call unpin-taskbar-icons.cmd
echo .
rem ... remove stupid public folders
call cleanup-publicdir.cmd
echo .
2021-02-03 06:49:13 +01:00
date /t
time /t
2021-01-12 17:01:34 +01:00
echo ####### %0 #######
echo READY.
2021-01-14 00:03:49 +01:00
echo .
2021-01-30 21:38:46 +01:00
2022-12-29 17:01:45 +01:00
echo sleep 5 seconds ...
ping 127.0.0.1 -n 5 > nul 2 >& 1
2022-12-29 12:21:32 +01:00
echo killing logmonitor ...
taskkill /f /im logmonitor.exe
2022-12-29 22:48:54 +01:00
echo killing explorer ...
taskkill /f /im explorer.exe
2022-12-29 12:21:32 +01:00
echo asking the user to remove the USB stick ...
2022-12-29 17:01:45 +01:00
prompt-user " +++ INSTALLATION FINISHED. +++ Please REMOVE the installation MEDIA (USB Stick) NOW! IMPORTANT HINT: Disable the update blocker to make the Microsoft Store work! "
2022-12-29 12:21:32 +01:00
2021-03-13 13:06:52 +01:00
echo rebooting ...
shutdown -g -t 0