Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Citrix logon scripts

Status
Not open for further replies.

Blutch

IS-IT--Management
Sep 19, 2002
203
BE
Is there a way to make sure my logon scripts run before my application starts ???

Thx
 
you could put the command to start the app in the actual login script??? at the end, that way the rest of the script will be run before it?
 
Your login scripts definately should run before the published app runs. IF they are configured properly.

Jon

There is much pleasure to be gained from useless knowledge. (Bertrand Russell)
 
The scripts are correctly configured. The only problem is that for one specific program the users need a shared resource which is in another domain (over the wan) ...
 
My suggestion would be to create a batch file what would look like this:

@echo off

net use k: \\fileserver\share
start m:\program files\<application.exe>

exit

Publish this batch file as a published application.

Just an idea! :)
 
go to gpedit.msc and go to the computer configuration...scripts, and change your settings in there.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top