monkeypig Posted November 24, 2008 Posted November 24, 2008 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 ) )
monkeypig Posted November 24, 2008 Author Posted November 24, 2008 No worries folks, worked it out myself. In Settings, on Build tab select "Don't Prompt Image Details". Doh! Didn't spot it first time 'round...
Recommended Posts