Skip to content

Instantly share code, notes, and snippets.

@Soul-Master
Last active December 17, 2015 06:18
Show Gist options
  • Save Soul-Master/5563853 to your computer and use it in GitHub Desktop.
Save Soul-Master/5563853 to your computer and use it in GitHub Desktop.
Automate script to convert all folders (must contains VIDEO_TS folder) in current directory into ISO file by batch file and ImgBurn. PS. credit to videohelp forum http://bit.ly/16rME4I
SET imgBurnPath="C:\Program Files (x86)\ImgBurn\imgburn.exe"
SET destination=A:\Series\Pentor
@for /d %%i in (*.*) do %imgBurnPath% /mode build /buildmode imagefile /src "%%i\" /dest "%destination%\%%i.iso" /FILESYSTEM "ISO9660 + UDF" /UDFREVISION "1.02" /VOLUMELABEL "%%i" /rootfolder yes /noimagedetails yes /start /close
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment