Hi there,
im facing the problem, that my setups in the post installer are starting to quick, means sometimes i got 2 setups at the same time so one setup brings up the error "another installation is already running".
is there any batch command with which i can define to start the setup only if the previous is completed?
This is my .bat
thanks in advance
im facing the problem, that my setups in the post installer are starting to quick, means sometimes i got 2 setups at the same time so one setup brings up the error "another installation is already running".
is there any batch command with which i can define to start the setup only if the previous is completed?
This is my .bat
Code:
@ECHO OFF
for %%i in (C 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 %%i:\sources\install.wim set CDROM=%%i:
if not defined CDROM goto :eof
echo Detected CDROM as drive %CDROM%
cd\
Title Standard Install
Color F0
@echo ********** Welcome **********
Color 0F
"%CDROM%\WinReducerPI\Standard\cdbxp.exe" /SP- /VERYSILENT /NORESTART
"%CDROM%\WinReducerPI\Standard\Firefox.exe" -ms /norestart
"%CDROM%\WinReducerPI\Standard\FoxitReader.exe" /VERYSILENT /NORESTART /SUPPRESSMSGBOXES /SP-
"%CDROM%\WinReducerPI\Standard\FreeCommanderXE.exe" /VERYSILENT /NORESTART /SUPPRESSMSGBOXES /SP-
"%CDROM%\WinReducerPI\Standard\WinmailOpener.exe" /S
"%CDROM%\WinReducerPI\Standard\OpenOffice.exe"
"%CDROM%\WinReducerPI\Standard\winter32.exe"
"%CDROM%\WinReducerPI\Standard\7z.msi"
"%CDROM%\WinReducerPI\Standard\sqlany12.msi" /qb
"%CDROM%\WinReducerPI\vlcwin64.exe" /S
thanks in advance