Here's the scenario.
I have about 200 users who log in to a certain domain "NA". They each use a login script to map their drives. When they log into citrix, I need to bypass the script entirely. Here's what I've done so far.
I created an environment variable on the server called CITRIX and gave it a value of 1. I have tried having their scripts call the following:
if %citrix%==%citrix% goto :logon
if %citrix%==1 goto :end
All it tells me is either "goto was not expected at this time" or ":logon was not expected at this time"
Any ideas how I can accomplish this? If I type "echo %citrix%" at the server, it returns "1" (no quotes).
Any help would be appreciated!
--Kas
I have about 200 users who log in to a certain domain "NA". They each use a login script to map their drives. When they log into citrix, I need to bypass the script entirely. Here's what I've done so far.
I created an environment variable on the server called CITRIX and gave it a value of 1. I have tried having their scripts call the following:
if %citrix%==%citrix% goto :logon
if %citrix%==1 goto :end
All it tells me is either "goto was not expected at this time" or ":logon was not expected at this time"
Any ideas how I can accomplish this? If I type "echo %citrix%" at the server, it returns "1" (no quotes).
Any help would be appreciated!
--Kas