Hi all,
I have written a batch file to automate the conversion of some bdrom folders to .iso images, problem is for each build I am prompted to confirm. Is there a way I can disable this? i.e. a silent/quiet mode option.
Thanks
Batch file contents below:
@ECHO off
C:
CD \Movies
FOR /d %%I IN (*) DO (
CLS
IF exist %%I\BDMV (
ECHO %%I
"C:\Program Files\ImgBurn\ImgBurn.EXE" /MODE BUILD /BUILDMODE IMAGEFILE /SRC "C:\Movies\%%I" /DEST "C:\Movies\%%I.iso" /FILESYSTEM "UDF" /UDFREVISION "2.50" /VOLUMELABEL "%%I" /START /CLOSE
)
)