w10install/scripts/autoconfig.cmd

368 lines
7.7 KiB
Batchfile
Raw Permalink Normal View History

2021-01-12 17:01:34 +01:00
@echo off
rem this script is doing most of the work ...
2023-02-16 13:37:41 +01:00
set T=%SystemDrive%\TEMP
set TOOLS=%SystemDrive%\tools
2021-01-12 17:01:34 +01:00
set SCRIPTS=%TOOLS%\scripts
2023-02-20 07:56:50 +01:00
set LOG=%SCRIPTS%\autoconfig.txt
2023-02-23 11:14:36 +01:00
set SCRIPT_SETTINGS=%TOOLS%\scripts\settings.cmd
2024-02-23 14:03:56 +01:00
set CUSTOM_SETTINGS=%TOOLS%\custom\settings.cmd
2021-02-03 06:49:13 +01:00
2023-12-27 11:21:42 +01:00
rem start logging ...
2023-02-24 12:22:13 +01:00
del /F /Q %LOG% 1>nul 2>nul
2021-02-03 06:49:13 +01:00
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
2023-02-23 11:14:36 +01:00
rem ===================
rem DEFAULTS
rem ===================
set LANG=en-US
set windows_updates=0
2023-12-26 23:32:21 +01:00
set windows_targetrelease=2009
2023-02-23 11:14:36 +01:00
set logon_logo=0
set install_firefox=0
set install_aerolite=0
set bgcol_R=3
set bgcol_G=131
set bgcol_B=135
set explorer_quick_access=0
set preserve_savedgames_folder=1
set searchdomains=localdomain,fritz.box
set gitserver=github.com
set gitrepo=my_repo_at_github
2023-12-26 22:43:59 +01:00
set localadmin=localadmin
set localadmin_name=Local Administrator
2023-02-23 11:14:36 +01:00
set start_desktopinfo=0
2023-07-30 10:42:03 +02:00
set use_nettime=0
2023-12-26 22:43:59 +01:00
set bluetooth_networking=0
set ms_tcpip6=0
set ms_implat=0
set ms_server=0
2024-12-13 23:45:59 +01:00
set browser_homepage=google.com
2023-02-23 11:14:36 +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 17:01:34 +01:00
2023-02-23 11:14:36 +01:00
rem ===================
rem CONFIGFILE CHECKS
rem ===================
2021-01-12 17:01:34 +01:00
2023-02-23 11:14:36 +01:00
echo.
echo searching for SCRIPT settings ...
if NOT EXIST %SCRIPT_SETTINGS% (
echo INFO: config file %SCRIPT_SETTINGS% NOT FOUND
) else (
2023-02-23 11:14:36 +01:00
echo OK. Loading SCRIPT settings ...
call %SCRIPT_SETTINGS%
)
2023-02-23 11:14:36 +01:00
echo.
2024-02-21 11:58:08 +01:00
echo searching for CUSTOM settings ...
if NOT EXIST %CUSTOM_SETTINGS% (
echo INFO: config file %CUSTOM_SETTINGS% NOT FOUND
2023-02-23 11:14:36 +01:00
) else (
2024-02-21 11:58:08 +01:00
echo OK. Loading CUSTOM settings ...
call %CUSTOM_SETTINGS%
)
2021-01-12 17:01:34 +01:00
2023-02-23 11:14:36 +01:00
rem show all the settings ...
echo.
2021-03-31 01:11:03 +02:00
echo ++++++++++++++++++
echo LANG=%LANG%
2021-03-31 01:11:03 +02:00
echo windows_updates=%windows_updates%
2023-02-20 21:42:25 +01:00
echo windows_targetrelease=%windows_targetrelease%
echo logon_logo=%logon_logo%
2021-03-31 13:42:21 +02:00
echo install_firefox=%install_firefox%
echo install_aerolite=%install_aerolite%
echo bgcol_R=%bgcol_R%
echo bgcol_G=%bgcol_G%
echo bgcol_B=%bgcol_B%
echo explorer_quick_access=%explorer_quick_access%
2023-02-20 21:42:25 +01:00
echo preserve_savedgames_folder=%preserve_savedgames_folder%
2023-12-26 22:43:59 +01:00
echo domain=%domain%
2023-02-20 21:42:25 +01:00
echo searchdomains=%searchdomains%
echo gitserver=%gitserver%
echo gitrepo=%gitrepo%
2023-12-26 22:43:59 +01:00
echo localadmin=%localadmin%
echo localadmin_name=%localadmin_name%
2023-02-23 11:14:36 +01:00
echo start_desktopinfo=%start_desktopinfo%
2023-07-30 17:02:56 +02:00
echo set use_nettime=%use_nettime%
2023-12-26 22:43:59 +01:00
echo bluetooth_networking=%bluetooth_networking%
echo ms_tcpip6=%ms_tcpip6%
echo ms_implat=%ms_implat%
echo ms_server=%ms_server%
2024-12-13 23:45:59 +01:00
echo browser_homepage=%browser_homepage%
2023-12-26 22:43:59 +01:00
echo ++++++++++++++++++
echo.
2023-02-23 11:14:36 +01:00
rem ======
rem MAIN
rem ======
echo creating %T% ...
mkdir %T% 1>nul 2>nul
echo cd to %SCRIPTS% ...
cd /D %SCRIPTS%
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.
2021-02-28 15:24:20 +01:00
rem put vnc in place ...
call unpack-vnc.cmd
echo.
2024-09-08 19:53:09 +02:00
rem put office deployment tool in place ...
call unpack-officedeploymenttool.cmd
echo.
2023-01-31 20:49:23 +01:00
rem unpack all the other zipfiles ...
call unpack-zipfiles.cmd
echo.
2021-02-28 14:10:59 +01:00
rem copy some other stuff ...
call copy-executables.cmd
2021-02-28 14:10:59 +01:00
echo.
2023-01-31 20:49:23 +01:00
rem unpack powershell packages and register them ...
call unpack-pspackages.cmd
echo.
2022-12-28 18:52:04 +01:00
echo #######################
echo ### MODIFICATIONS ###
echo #######################
echo.
2023-01-31 20:49:23 +01:00
rem block updates - this must be done EARLY!
2022-12-28 18:52:04 +01:00
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-19 11:34:13 +01:00
dism /online /enable-feature /featurename:NetFx3 /All /Source:%WINDIR%\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.
call modify-explorer.cmd
echo.
call modify-powersettings.cmd
echo.
call modify-taskbar.cmd
echo.
2023-07-30 10:42:03 +02:00
if %use_nettime% == 1 (
call install-nettime.cmd
echo.
) else (
call modify-timeservers.cmd
echo.
)
2022-12-28 18:52:04 +01:00
call modify-searchdomains.cmd
echo.
2023-02-22 13:23:31 +01:00
rem optimize the TCP stack for datacenter use!
2023-02-22 17:07:29 +01:00
echo ####### tcpoptimize.ps1 #######
2023-02-22 13:23:31 +01:00
powershell -Command .\tcpoptimize.ps1
2023-02-22 17:07:29 +01:00
echo ####### tcpoptimize.ps1 #######
rem cleanup (we don't need the logfile backup) ...
deltree %Systemdrive%\BACKUP
2023-02-22 13:23:31 +01:00
echo.
2022-12-28 18:52:04 +01:00
echo #######################
echo ### UNINSTALL tasks ###
echo #######################
echo.
rem REMOVE all STOCK apps!
2022-12-28 18:52:04 +01:00
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
2023-02-26 19:03:17 +01:00
rem must be done early, because it cleans the "Tools" menu ...
call install-shortcuts.cmd
echo.
2021-02-27 23:45:38 +01:00
call install-tweaks.cmd
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
call install-vcredist.cmd
echo.
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-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.
call install-irfanview.cmd
echo.
rem INSTALL the APPS WE want to have!
call install-apps.cmd
echo.
call mkinstall-links.cmd
2023-02-16 15:50:45 +01:00
echo.
2022-12-28 18:52:04 +01:00
echo #####################
echo ### DISABLE tasks ###
echo #####################
echo.
2023-02-08 16:12:23 +01:00
call disable-automaticactivation.cmd
echo.
2022-12-28 18:52:04 +01:00
call disable-accountpicture.cmd
echo.
call disable-logonbackground.cmd
echo.
call disable-meetnow.cmd
echo.
call disable-autologon.cmd
echo.
call disable-systemproxy.cmd
echo.
powershell -command .\disable-soundscheme.ps1
echo.
2023-02-02 17:27:36 +01:00
rem stop all the beeping ...
sc config beep start=disabled
2022-12-28 18:52:04 +01:00
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.
2024-12-02 12:16:45 +01:00
rem ... remove the drive letter of partition 2 on boot drive
call remove-drive-letter.cmd
2024-12-02 12:31:59 +01:00
echo.
2024-12-02 12:16:45 +01:00
2023-01-22 22:32:07 +01:00
echo add read access rights to all users on public icons ...
icacls %PUBLIC%\Desktop\*.lnk /grant Users:R
echo.
echo removing read-only flag on tools folder ...
attrib /S /D -R %TOOLS%\*
echo.
2023-02-02 10:01:43 +01:00
echo removing unwanted printers ...
call remove-printer.cmd "Microsoft XPS Document Writer"
call remove-printer.cmd "Fax"
echo.
2023-02-14 15:08:15 +01:00
echo #####################
echo ### FINALIZING ###
echo #####################
echo.
2023-01-31 20:49:23 +01:00
rem enable updates again (doing it as late as possible) ...
if %windows_updates% == 1 (
call enable-updates.cmd
echo.
)
2023-12-26 23:32:21 +01:00
rem convert evaluate version ...
call convert-evaluate.cmd
echo.
2023-02-14 15:08:15 +01:00
rem should be done as late as possible ...
call install-logonscript.cmd
echo.
2023-02-20 21:42:25 +01:00
rem LAST action!
echo setting permissions for [ %TOOLS% ] ...
cd /D %SystemDrive%\
takeown /F %TOOLS% /R /A /D Y 1>nul
icacls %TOOLS% /inheritance:r
icacls %TOOLS% /grant Administrators:F /t /c /l 1>nul
icacls %TOOLS% /grant Users:RX /t /c /l 1>nul
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
echo killing logmonitor ...
taskkill /f /im logmonitor.exe
2022-12-29 22:48:54 +01:00
echo killing explorer ...
taskkill /f /im explorer.exe
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!"
2021-03-13 13:06:52 +01:00
echo rebooting ...
shutdown -g -t 0