.bat open specific file in Citrix application

Discussion forum for all Windows batch related topics.

Moderator: DosItHelp

Post Reply
Message
Author
jhallcb
Posts: 1
Joined: 05 May 2016 07:42

.bat open specific file in Citrix application

#1 Post by jhallcb » 05 May 2016 07:57

Hi guys, new to the forum and batch files for that matter. I'm trying to open a specific Access database using the Citrix client version of the app. Due to the extended path to load the app, the .bat doesn't seem to like the section that specifies the folder path.

The below works perfectly to open the app:

Code: Select all

START "" "C:\Program Files\Citrix\ICA Client\pnagent.exe" /CitrixShortcut: (3) /QLaunch "AVIXA:Microsoft Access 2007" 


However if I specify the file patch afterwards such as below, a small window titled WFCRUN32 opens and details command usage options

Code: Select all

START "" "C:\Program Files\Citrix\ICA Client\pnagent.exe" /CitrixShortcut: (3) /QLaunch "AVIXA:Microsoft Access 2007" "U:\EOS Tracker\EOS Tracker V1.2.accdb"


Does anyone have any ideas on how I can get round this as it is currently ruining my plans for greatness?

Post Reply