I am trying to run a quirky utility that will only start "when started from its own directory".
(I subsittuted actual name of directories with yyy and xxx)
The complete path is: C:\Program Files\yyy\xxx\Utility.exe
If I
Run>C:\Program Files\yyy\xxx\Utility.exe
the program replies with an error box: "The Utility must be run from xxx installation Directory".
I have found one clunky way of getting this done: by going to CMD, doing a CD, send>Utility.exe, ENTER, close CMD.
Code: Select all
Run>CMD /k cd C:\Program Files\yyy\xxx\
Wait>0.2
SetFocus>Administrator*
Send>Utility.exe
Press ENTER
WindowAction>3,Administrator*
Thanks,
CC