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 bkrike on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Logon Script - wscript

Status
Not open for further replies.

Trevahaha

Programmer
Nov 21, 2002
129
US
Is there a way to change what is displayed in the logon box? I've seen this on some networks where instead of just saying "Applying your personal settings..." It actually displays what it is doing.

Trevor
 
in the logon script, either vbs or js, create a variable and assign it the name you want the popup to have:

like

var strTitle = "Your Popup Message"

then using %shellname%.Popup

Shell.Popup(var, var, strTitle, var);

This call the script. There is more to the script, so if you need it let me know.
 
no.. I don't want to create a dialog box / popup. I wanted to change the text that is displayed when a user is logining in. It normally says:

Please wait...
<Microsoft Windows XP Logo>

Loading your personal settings....
 
Ah, sorry I miss understood the question.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top