w10install/scripts/autoconfig-all.cmd

278 lines
5.3 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 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%
rem SCRIPT settings ...
if EXIST %SETTINGS% (
echo loading settings ...
call %SETTINGS%
) else (
echo WARNING: [ %SETTINGS% ] not found!
echo setting defaults ...
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-01-12 17:01:34 +01:00
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%
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%
echo gitserver=%gitserver%
echo gitrepo=%gitrepo%
2022-12-29 21:28:59 +01:00
echo searchdomains=%searchdomains%
echo ++++++++++++++++++
echo.
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.
rem unpack powershell packages and register them ...
call unpack-pspackages.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 ...
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-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-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
call install-vcredist.cmd
echo.
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 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.
2021-03-09 23:15:35 +01:00
call install-shortcuts.cmd
2021-02-03 12:42:10 +01:00
echo.
powershell -Command "Install-Module -Name PSWindowsUpdate"
2021-03-02 14:21:58 +01:00
rem should be done as late as possible ...
call install-logonscript.cmd
echo.
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-autologon.cmd
echo.
call disable-systemproxy.cmd
echo.
powershell -command .\disable-soundscheme.ps1
echo.
2023-01-29 17:23:17 +01:00
echo #####################
echo ### UPDATES tasks ###
echo #####################
echo.
rem enable updates again ...
if %windows_updates% == 1 (
call enable-updates.cmd
echo.
)
call block-updates.cmd
echo.
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.
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.
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