Quote:
|
Originally Posted by jebba
I'm curious too - is this sent through the DS?
|
You run this script on one computer to show a message on another computer.
Since the message is only displayed for 30 seconds I would not use it to alert users to important messages that they need to do something about...
for that I use this:
Code:
Set MyShell = WScript.CreateObject("WScript.Shell")
MyAnswer = MyShell.Popup("Can you read this message?", 0, "Read Me", vbOKOnly + vbCritical + vbSystemModal)