Computer Problems? Computing.Net has over 1,000,000 posts about all things technology related! Over 90% answered within 24 hours! Click here to start participating now! Also, be sure to check out the New User Guide.
NET SEND to MULTIPLE USERS
Name: jeff bogner Date: January 17, 2002 at 12:22:29 Pacific
Comment:
I am trying to find a way to do a NET SEND from WIN NT to multiple users but not from a domain controller. I know you can do one at a time by doing net send |message. I am not playing with a .bat file but not sure how to do the switch so a message only has to be typed once but each name is sent with the same message. some type of swithc. any help would be great. thanks,
Name: jeff bogner Date: January 18, 2002 at 06:40:40 Pacific
Reply:
i could do that too but net send runs in dos.
0
Response Number 3
Name: kilo Date: February 26, 2002 at 16:02:43 Pacific
Reply:
My company does it all the time. They net send to a word like "staff" which has been associated like a Distribution List. So maybe try setting up something like that.
0
Response Number 4
Name: net send Date: February 28, 2002 at 01:05:45 Pacific
Reply:
net send * message
hope to solve your prob
0
Response Number 5
Name: benj588 Date: March 20, 2002 at 07:09:31 Pacific
Reply:
To send to multiple user that are on a different domain than yours use this:
NET SEND /DOMAIN:
Hope this helps.
0
Response Number 6
Name: Chas Date: April 25, 2002 at 08:02:57 Pacific
Reply:
Let me know if you still need to know how to do this. It is quite simple. Only a couple steps needed.
0
Response Number 7
Name: dennis Date: May 12, 2002 at 08:48:39 Pacific
Reply:
I'd like to Use net send to send to multiple IPs. namely 10.0.0.0 to 10.0.0.255. Is there an easy way to do this. Using a script, .bat maybe? Thanks in advance.
0
Response Number 8
Name: Jim Roberts Date: June 6, 2002 at 05:19:33 Pacific
Reply:
> I'd like to Use net send to send to > multiple IPs. namely 10.0.0.0 to > 10.0.0.255. Is there an easy way to do > this. Using a script, .bat maybe? > Thanks in advance.
Try this: FOR /L %v IN (1,1,255) DO net send 10.0.0.%v Hello there
In a batch file it will have to look like this (notics %% instead of %): FOR /L %%v IN (1,1,255) DO net send 10.0.0.%%v Hello there
Summary: Simplest way is when you want to send to one user in the same domain as you. Then a sample usage would be... net send [machine] [message] ...so if you and I are in the same domain and my computer nam...