bandsareme Posted May 7, 2007 Share Posted May 7, 2007 Hi Guys, This is my first post, but i am kinda clued up to the whole world of dvd's and software and such. I am trying to write a batch file in notepad, that will allow me to rip data from muliple dvds. I have a pc with 4 dvd drives, and i want to try and create a batch file that i can run that will rip each dvd one after the other. This is what i have so far "c:\program files\imgburn\imgburn.exe" /MODE ISOREAD /SRC d: /DEST "C:\RIPPED\DVD1\" /START "c:\program files\imgburn\imgburn.exe" /MODE ISOREAD /SRC d: /DEST "C:\RIPPED\DVD2\" /START The problem i have is that if i add the \close or \closesuccess to this line, it wont close the application as that line only relates to ISOWRITE. Basically what i want is, that once the iso has been read and after it finishes it brings a popup that says " Operation Completed Successfully " then it asks to click " OK " i want it to click ok, and then close the app, so that the next line in my batch file can start and rip the 2nd dvd and so on. Bit i cant see a way of doing this with the command lines i cant find!! Is there anyway to confirm the successful read ( basically click OK ) and then close imgburm automatically so that the next line in the batch file can start? Sorry for the long post. Any help would be really great. Thanks Guys, Bandsareme Link to comment Share on other sites More sharing options...
mmalves Posted May 7, 2007 Share Posted May 7, 2007 ISOREAD mode will create an ISO image of your disc, thus, /DEST should point to where you want the save the ISO image plus its name. Try: "C:\Program Files\ImgBurn\ImgBurn.exe" /MODE ISOREAD /SRC D: /DEST "C:\TEST.ISO" /START /CLOSE Link to comment Share on other sites More sharing options...
Shamus_McFartfinger Posted May 7, 2007 Share Posted May 7, 2007 That'd work. I'd add the /eject switch as well just to make things easier - like this: "c:\program files\imgBurn\imgburn.exe" /mode isoread /src d: /dest "c:\iso1.iso" /start /close /eject yes "c:\program files\imgBurn\imgburn.exe" /mode isoread /src e: /dest "c:\iso2.iso" /start /close /eject yes "c:\program files\imgBurn\imgburn.exe" /mode isoread /src f: /dest "c:\iso3.iso" /start /close /eject yes "c:\program files\imgBurn\imgburn.exe" /mode isoread /src g: /dest "c:\iso4.iso" /start /close /eject yes Link to comment Share on other sites More sharing options...
Recommended Posts