If you want to run an application, put the entire path in the box, not just the program name. The name may work in the Windows run box, but not in the dMC box. For example, putting
in the "After All Conversion" will result in an error. Putting
will work.
Batch files are a special case. Thanks to jtbse, there is a way you can run them:
Let's say C:\test.bat is our batch file we wish to run. The following will result in errors:
etc.
A working result can be achieved by the following:
Code:
iexplore
Code:
"C:\Program Files\Internet Explorer\iexplore.exe"
Batch files are a special case. Thanks to jtbse, there is a way you can run them:
Let's say C:\test.bat is our batch file we wish to run. The following will result in errors:
Code:
C:\test.bat "C:\test.bat" cmd /K C:\test.bat
A working result can be achieved by the following:
Code:
C:\Windows\System32\cmd.exe /K C:\test.bat