Here is what I'm wanting to do; I want to create a .bat file to run DVD Fab Decrypter, then goes automatically to DVD Rebuilder, then automatically goes to ImageBurn. What do you think? Is there a way to create this batch file?
Yes use notepad or any program that will save the end file in pure text. Put the commands in order you want them to work. Remember, one program as to end before the next can start. Save the file any name with a .bat extension
Example: @echo off cls program1.exe /switches program2.exe /switches Also, some programs will "call" other programs, causeing program2.exe to start before program1.exe is done. If this happens, do this: @echo off cls program1.exe /switches pause cls program2.exe /switches