First of all, great software!
I've been looking through the command line switches and I'm trying to work out a way that completely automates burning files within a folder.
Currently I've got (with variables set elsewhere in batch):
"C:\Program Files (x86)\ImgBurn\ImgBurn.exe" /mode build /BUILDOUTPUTMODE DEVICE /FILESYSTEM "ISO9660 + Joliet" /VERIFY YES /SRC "%userprofile%\Desktop\ToBurn" /VOLUMELABEL %Name% /START /CLOSESUCCESS
While this runs correctly, it prompts me with "do you want me to put files in the root instead of making a folder?" and has a summary of burning too.
Ideally I want the batch file to just burn the files in the folder without input as this process is something I do multiple times per day.
Also, Ideally I want to burn all files of a specific type (e.g *.jpg or *.*) however I can't seem to find an SRC argument that works with this. Burn lists seem to require specific file names.
Any ideas?