Right, this might be a PoP for someone here but it has my brain confused. I'm moving all my data from my backup DVDs to my new RAID array and its a PITA as I have to do this one at a time.
Requirement - automated copying of files from DVD drives to HDD under W7
Hardware- two DVD drives (E: and F
Storage: one 2Tb drive D:
I can do this for a single drive by using autoplay to call a rip.bat script which copies files using DOS copy command to the location and then ejects the disk. I then swap the DVD and push the next disk in and it does its stuff until it ejects again. Rip.bat is basically
xcopy e:\*.* d:\crap\
nircmd eject e:
What I want is to be able to get both DVD drives working. So the batch file needs to cope with that. You might assume I could replace "e:" in the script with a variable. I could detect whether a given drive has a disk in it but that doesn't help as that drive might be already copying so I'd end up trying to access that drive twice and not get the other drive working.
Any ideas? Solutions even better!!
Requirement - automated copying of files from DVD drives to HDD under W7
Hardware- two DVD drives (E: and F

Storage: one 2Tb drive D:
I can do this for a single drive by using autoplay to call a rip.bat script which copies files using DOS copy command to the location and then ejects the disk. I then swap the DVD and push the next disk in and it does its stuff until it ejects again. Rip.bat is basically
xcopy e:\*.* d:\crap\
nircmd eject e:
What I want is to be able to get both DVD drives working. So the batch file needs to cope with that. You might assume I could replace "e:" in the script with a variable. I could detect whether a given drive has a disk in it but that doesn't help as that drive might be already copying so I'd end up trying to access that drive twice and not get the other drive working.
Any ideas? Solutions even better!!