using batch file with script executing dvdfab not using /volume. the iso failed to create with this version as well. I tried just launching dvdfab manually and performing the copy and it resulted in immediately ejecting the disc and moving to step 2 and then producing an unusuable iso file. using version 8230 works just fine.
the following script is not properly copying the disc or using the /volume.
it shows dvd_volume instead of dvd1 as specified in command line.
set dest=z:\movies
set program=C:\Program Files (x86)\DVDFab 9 US\
REM set program=C:\Program Files (x86)\DVDFab 8 QT\
Set /P year=Enter film year^>
Set /P show=Enter film name^>
REM CREATE LIBRARY FOLDER
mkdir "%dest%\%show% (%year%)"
REM GRAB MOVIE FROM DVD and put in library folder
"%program%dvdfab.exe" /mode "mainmovie" /src "d:\" /dest "%dest%\%show% (%year%)\%show% (%year%).iso" /VOLUME "DVD1" /DISPLAYFORCEDSUB "Yes" /removepgc "yes" /outdisc "DVD9" /close
the following script is not properly copying the disc or using the /volume.
it shows dvd_volume instead of dvd1 as specified in command line.
set dest=z:\movies
set program=C:\Program Files (x86)\DVDFab 9 US\
REM set program=C:\Program Files (x86)\DVDFab 8 QT\
Set /P year=Enter film year^>
Set /P show=Enter film name^>
REM CREATE LIBRARY FOLDER
mkdir "%dest%\%show% (%year%)"
REM GRAB MOVIE FROM DVD and put in library folder
"%program%dvdfab.exe" /mode "mainmovie" /src "d:\" /dest "%dest%\%show% (%year%)\%show% (%year%).iso" /VOLUME "DVD1" /DISPLAYFORCEDSUB "Yes" /removepgc "yes" /outdisc "DVD9" /close
Comment