w10install/wim/StartCustomSetup.cmd

38 lines
819 B
Batchfile
Raw Normal View History

2021-01-10 16:50:35 +01:00
@echo off
set LOG=c:\StartCustomSetup.txt
set BATCH=CustomSetup.cmd
if not "%1"=="STDOUT_TO_FILE" %0 STDOUT_TO_FILE %* 1>%LOG% 2>&1
shift /1
echo ####### %0 #######
date /t
time /t
echo.
rem scan for the USB stick (infinite) ...
:loop
2021-01-10 16:50:35 +01:00
for %%D in (A B D E F G H I J K L M N O P Q R S T U V W X Y Z) do (
if EXIST %%D:\%BATCH% (
echo EXECUTING %%D:\%BATCH% ...
cd /D %%D:\
2021-01-12 20:28:53 +01:00
start /MIN cmd /C %BATCH%
2021-01-10 16:50:35 +01:00
GOTO END
) else (
echo INFO: %BATCH% not found on drive %%D!
echo INFO: Calling the GUI helper to prompt the user to use a different USB port ...
prompt-user "Custom setup script NOT found! Please disconnect the USB stick and connect it to another USB port. Then click on OK."
2021-01-10 16:50:35 +01:00
)
)
goto loop
2021-01-10 16:50:35 +01:00
:END
echo.
date /t
time /t
echo ####### %0 #######