Working on a batch file to launch a program with an .ini file. The program shortcut has a target: C:\(path).exe then a parameter. That is C:\(path).ini AAA00 It also has a Start In location. My problem is that the batch file will run but when it gets to AAA00 it fails and says cannot find AAA00. This is how the program is setup and each user in the program requires a unique id. AAA00 picks up the unique id with AAA(00).
My batch file example:
@ECHO OFF
cd /d %HOMEPATH%\(path)
Start /d C:\(path).exe "%HOMEPATH%\(path).ini" AAA00
Basically the parameter AAA00 does not get picked up with "%HOMEPATH%\(path).ini"
I have tried "%HOMEPATH%\(path).ini AAA00" but it fails.
Reason: Trying to get this program to run over RemoteApp.