title
Products            Buy            Support Forum            Professional            About            Codec Central
 

PowerPack "After/Before Conversion Run" tips

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • LtData
    dBpoweramp Guru

    • May 2004
    • 8288

    PowerPack "After/Before Conversion Run" tips

    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
    Code:
    iexplore
    in the "After All Conversion" will result in an error. Putting
    Code:
    "C:\Program Files\Internet Explorer\iexplore.exe"
    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:
    Code:
    C:\test.bat
    "C:\test.bat"
    cmd /K C:\test.bat
    etc.

    A working result can be achieved by the following:
    Code:
    C:\Windows\System32\cmd.exe /K C:\test.bat
Working...

]]>