Hi Thomas
You can use the VBS to open the Citrix server Url with auto user id & password. Kindly refer the VBscript
_______________
set a = createobject("wscript.shell")
a.run "Citrix server Url"
wscript.sleep(2000)
a.sendkeys("User@domain.com")
a.sendkeys chr(9)
wscript.sleep (2000)
a.sendkeys("Password")
a.sendkeys "{Enter}"
wscript.quit
_________________________
BR
SS