[Windows] Automatic DVD burning
Posted: August 28th, 2008, 11:50 am
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:
This code will look in the downloaded directory for iso img and other .i?? files and burn to a dvd.
Enjoy!
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)Enjoy!