w10install/image/CustomSetup.cmd

40 lines
827 B
Batchfile
Raw Normal View History

2021-01-10 16:50:35 +01:00
@echo off
2021-01-12 17:01:34 +01:00
rem this script puts everything in place ...
2021-01-10 16:50:35 +01:00
2021-01-12 17:01:34 +01:00
set TOOLS=c:\tools
2023-01-14 17:15:31 +01:00
set SXS=%WINDIR%\sources\sxs
2021-02-27 21:16:12 +01:00
set BATCH=%TOOLS%\scripts\autoconfig-all.cmd
2021-02-03 06:49:13 +01:00
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.
2021-01-10 16:50:35 +01:00
2022-12-29 10:49:17 +01:00
rem WARNING: DO NOT KILL windows explorer here!
rem Explanation: Doing this will result in a crippled
rem windows defender configuration! (the app to open it will not be present)
2021-01-10 16:50:35 +01:00
2021-02-27 21:16:12 +01:00
echo copying folder %TOOLS% ...
robocopy tools %TOOLS% /MIR /256 /NJH /NFL /NDL
echo.
2022-11-25 22:19:53 +01:00
echo copying folder %SXS% ...
robocopy sources\sxs %SXS% /MIR /256 /NJH /NFL /NDL
echo.
2021-01-12 20:23:36 +01:00
echo starting %BATCH% ...
2021-01-14 00:03:49 +01:00
call %BATCH%
2021-01-10 16:50:35 +01:00
echo.
2021-01-12 20:23:36 +01:00
2021-02-03 06:49:13 +01:00
date /t
time /t
2021-01-12 20:23:36 +01:00
echo ####### %0 #######
echo READY.
2021-01-14 00:03:49 +01:00
echo.
2022-12-28 18:52:04 +01:00