Network messaging using net send

Adrian1

Board Regular
Joined
Dec 30, 2003
Messages
126
Sorry, but this is not excel related, but here goes

I am wanting to send network messages to two people on the network at the same time

I currently type in net send [user id] at the command prompt in DOS

is there a way to send the same message to two people at the same time?

Your help would be appreciated

Thank you
 

Excel Facts

Which came first: VisiCalc or Lotus 1-2-3?
Dan Bricklin and Bob Frankston debuted VisiCalc in 1979 as a Visible Calculator. Lotus 1-2-3 debuted in the early 1980's, from Mitch Kapor.
Hello,

Yes there is.

Open notebook and on seperate lines type in each message you want sent. e.g.

net send abcde hello user
net send qwert hello user

then save this file as whatever name you want but after the filename type in .bat

This will save the file as a batch file. when you double click the file to open it, it will automatically send the messages. (If you want to edit the names or messages then you'll have to right click the file and choose edit)

I don't know if there's a better way but it's the only one that i know of and use.

Sam
 
Upvote 0
hi!
ok lets convert that to xcel.

set up like this. then highlight all the address you want to send the message and run the code below
Book1
ABCD
1Ipaddmessage
2192.168.20.7hello
3
4
5
6
Sheet4
<font face=Courier New><SPAN style="color:#00007F">Sub</SPAN> Netmsg()<SPAN style="color:#00007F">For</SPAN><SPAN style="color:#00007F">Each</SPAN> c<SPAN style="color:#00007F">In</SPAN> Selection
tmp = "net send " & c.Value & " " & c.Offset(0, 1).Value
    Shell (tmp)<SPAN style="color:#00007F">Next</SPAN> c<SPAN style="color:#00007F">End</SPAN><SPAN style="color:#00007F">Sub</SPAN></FONT>
 
Upvote 0

Forum statistics

Threads
1,214,386
Messages
6,119,217
Members
448,876
Latest member
Solitario

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top