w10install/image/CustomSetup.cmd
Michael H.G. Schmidt c879f10d4b testing ...
2022-12-29 10:49:17 +01:00

52 lines
1.1 KiB
Batchfile

@echo off
rem this script puts everything in place ...
set TOOLS=c:\tools
set SXS=c:\sources\sxs
set BATCH=%TOOLS%\scripts\autoconfig-all.cmd
set LOG=c:\CustomSetup.txt
del /F %LOG% 1>nul 2>nul
if not "%1"=="STDOUT_TO_FILE" %0 STDOUT_TO_FILE %* 1>%LOG% 2>&1
shift /1
echo ####### %0 #######
date /t
time /t
echo.
rem echo killing ssh agent ...
rem taskkill /F /IM ssh-agent.exe
rem taskkill /F /IM ssh.exe
rem echo restart explorer ...
rem taskkill /F /IM explorer.exe & start explorer.exe
rem echo.
rem echo deleting %TOOLS% and %SXS% ...
rem rd /S /Q %TOOLS% %SXS%
rem echo.
rem WARNING: DO NOT KILL windows explorer here!
rem Explanation: Doing this will result in a crippled
rem Windows defender configuration! (App to open it will not be present)
echo copying folder %TOOLS% ...
robocopy tools %TOOLS% /MIR /256 /NJH /NFL /NDL
echo.
echo copying folder %SXS% ...
robocopy sources\sxs %SXS% /MIR /256 /NJH /NFL /NDL
echo.
echo starting %BATCH% ...
call %BATCH%
echo.
date /t
time /t
echo ####### %0 #######
echo READY.
echo.