I have a custom action that is an EXE. I am deploying it to a subfolder within my Application Folder. I can then create a Custom Action (in the Commit group) that calls my EXE. This results in the following being executed...
"C:\Program Files\My Application\lib\executable.exe"
Instead, I need to do something like...
"cd C:\Program Files\My Application\lib\"
"executable.exe"
It is really frustrating that I have to do this, but unfortunately the EXE is part of a driver install for a 3rd Pary compoment, and I can't control how it functions.
Any help would be greatly appreciated.