[Windows] Automatic DVD burning

Come up with a useful post-processing script? Share it here!
Post Reply
Usenet
Jr. Member
Jr. Member
Posts: 87
Joined: February 12th, 2008, 6:04 pm

[Windows] Automatic DVD burning

Post by Usenet »

Get the "Windows Server 2003 Resource Kit Tools" http://www.microsoft.com/downloads/deta ... layLang=en (you only need dvdburn.exe)
and make a bat file with the following code:

Code: Select all

for /f %%G in ('dir /B %1\*.i??') do (dvdburn D: %1\%%G)
This code will look in the downloaded directory for iso img and other .i?? files and burn to a dvd.

Enjoy!
eagle00789
Newbie
Newbie
Posts: 30
Joined: July 5th, 2008, 9:40 am

Re: [Windows] Automatic DVD burning

Post by eagle00789 »

how does it respond to ifo/vob/bup files?? the ifo filename has a i in it :D
vdown
Release Testers
Release Testers
Posts: 38
Joined: January 30th, 2008, 8:01 am

Re: [Windows] Automatic DVD burning

Post by vdown »

If you wanted to do that, you could use ImgBurn which has a fully featured command line.

Including burning images, Video TS folders and creating iso.
Post Reply