Computing.Net > Forums > Windows NT > NET SEND to MULTIPLE USERS

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

Reply to Message Icon

Name: jeff bogner
Date: January 18, 2002 at 06:44:19 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,



Sponsored Link
Ads by Google

Response Number 1
Name: Greg Allin
Date: January 18, 2002 at 08:00:01 Pacific
Reply:

Well, I'm not great with Perl, but this should do the trick.

#!/perl/bin
open(names, "newnames.txt");
while (){
$name = split;
chomp($name); #Gets rid of return char
system("net send $name Hello");
}

This would net send everyone you specify in newnames.txt


0

Response Number 2
Name: Greg Allin
Date: January 18, 2002 at 08:14:03 Pacific
Reply:

It seems that it won't let me post the correct syntax for the while loop. Inside the parenthenses there needs to be left angle names right angle.


0

Response Number 3
Name: Pablo
Date: January 22, 2002 at 02:35:42 Pacific
Reply:

Just in case you did not know, you are unable to NET SEND to win9x machines only NT


0

Response Number 4
Name: Paul
Date: March 21, 2002 at 10:09:44 Pacific
Reply:

is there a way to do this? with a little dos utility?

It's very handy, i use it when i'm at work, it faster then email, it's great when you "net send" your collegue that the boss is coming when he's smoking a sigarette lol


0

Sponsored Link
Ads by Google
Reply to Message Icon

Related Posts

See More







Post Locked

This post is quite old and has been locked from receiving new replies. Please create a new posting instead.


Go to Windows NT Forum Home


Sponsored links

Ads by Google


Results for: NET SEND to MULTIPLE USERS

NET SEND to more than one user? www.computing.net/answers/windows-nt/net-send-to-more-than-one-user/14533.html

NETSEND to multiple users www.computing.net/answers/windows-nt/netsend-to-multiple-users/16374.html

Net Send a hyperlink www.computing.net/answers/windows-nt/net-send-a-hyperlink/18892.html