sleep 1 is not long enough. The login scripts are in two parts. Script 1 is a global script that everyone runs. Then based on group memborship you run a second script.

script 1

Code:
 Select
Case InGroup ("NA Login") <> 0
Call nalogin.kix
Case InGroup ("ASI Login") <> 0
Call asilogin.kix
Case InGroup ("Insight Login") <> 0
Call insightlogin.kix
Case InGroup ("Reid Login") <> 0
Call reidlogin.kix
EndSelect



sp if you a member of na login you run that second script. Can I "come back" to the first script after I have the user run the second script? I ask because I would rather put this gloabl stuff in one place. Could I put some kind of code after the case select statement so it will run after the second script runs. Is that even a good idea?