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

How do I send a message to my network

Status
Not open for further replies.

NiamhMc

Technical User
Apr 30, 2004
1
IE
I am looking to find out how to send a general message around our building. One that will flash up on everyones PC.
 
do NET SEND /? in a command prompt and you will get the instructions.

example: NET SEND /DOMAIN:yourdomain SERVER GOING DOWN IN 2 MINS!!!



"In space, nobody can hear you click..."
 
If you have to send within a NT-system (2k or xp), ReddLefty said everything needed. If you have some Win 95/98 clients, they need to run Winpop to get the message.

----------------------------------------

Everybody has the right to be stupid -- but some people abuse the privilege. (a quote from Stalin - and I am one of the abusers, sometimes...)
----------------------------------------
Experienced in the IT-chaos since 1984...
 
Thanks for clearing that up Sky.. I didn't mention it because this is the Windows 2000 forum ;-)



"In space, nobody can hear you click..."
 
This is a nice window form to do it in. Just open notepad and save it as a .vbs file.

Set WshShl = WScript.CreateObject("WScript.Shell")
Recipient = InputBox("Type the username or computer name " &_
"that the message is to be sent: ")
MsgText = InputBox("Type your message: ")
WshShl.Run "Net Send " & Recipient & " " & MsgText
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top