Good Morning Message

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Is it possible to make a good morning message that my domain users will see
when they log into their PC's ? Just a simple one saying good morning their
logon name and the time then it would dissappear after like 10 seconds ?
 
There is another feature somwhere in the group policies within AD that lets
you place a popup box at the logon prompt ... hmm ... you could also do some
form of mod to the system registry ... you can customize the entire logon
screen then ... change the images and things like ... i have a bit of
software that will do that for you.
 
All I want the popup is to say
Hello %LOGONNAME%
Welcome to %DOMAIN%
The time is %TIME%
Your Operating System is %OS%

Need it to stay up long enough for them to read it then go away. The
software you have will do this or does this need to be done in the Domain AD
logon script ?
 
Hmm ... i havnt deployed the application through my network. basicly the file
makes alterations to the system reg and then hacks one of the system file, i
forget which ... but the app would have to be run on each client indevisualy
.... i am sure you could implement it theough GPO or a ghosting software.
 
Hello Phil
Try This in GP

' Purpose of script to add the Domain Name to the first script
WScript.Timeout = 100
Set WshNetwork = WScript.CreateObject("WScript.Network")
WScript.Echo "Good Morning" & chr(13)& "Domain = " & WshNetwork.UserDomain &
Chr(13)& "Computer Name = " & WshNetwork.ComputerName & Chr(13)& "User Name =
" & WshNetwork.UserName & chr(13)& "Welcome To ?"
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top