Hello,
I have this problem of not running logon scripts, I have come up with the problem being that to many people log on at one time causesing it to get skipped, how can I stop this? I am wanting it to only be on the one server, so all users can access it and if it needs to get updated it is easy to do. It seems to only affect the Windows 7 machines. Though sometimes XP machine do it too.
I do have this code in it, should I make it so it randomly makes and number between 100 and 200 and then run it?
-->
'Wait until the user is really logged in
strUserName = ""
While strUserName = ""
WScript.Sleep 100 ' Wait 1 second
strUserName = WSHNetwork.UserName
Wend
strUserDomain = WSHNetwork.UserDomain
<--
Thank you, C3sium

