send message to whole windows network?
I've just discovered that you can use this command to send a message to one pc on the network
msg username /SERVER:hostname /V message to send
is there some command (something like below that i've just made up) that will send it to all pcs on the network?
msg /SERVER:192.168.1.* /V message to send
windows windows-10 cmd.exe
add a comment |
I've just discovered that you can use this command to send a message to one pc on the network
msg username /SERVER:hostname /V message to send
is there some command (something like below that i've just made up) that will send it to all pcs on the network?
msg /SERVER:192.168.1.* /V message to send
windows windows-10 cmd.exe
Are you talking about the "net send" command?
– ejbytes
Jul 7 '16 at 7:01
formerly known as net send. To my understanding, "msg" is the post-xp replacement for net send
– Blaine
Jul 7 '16 at 7:06
Ah, I think I just found something on that. I'll post it up for you.
– ejbytes
Jul 7 '16 at 7:23
add a comment |
I've just discovered that you can use this command to send a message to one pc on the network
msg username /SERVER:hostname /V message to send
is there some command (something like below that i've just made up) that will send it to all pcs on the network?
msg /SERVER:192.168.1.* /V message to send
windows windows-10 cmd.exe
I've just discovered that you can use this command to send a message to one pc on the network
msg username /SERVER:hostname /V message to send
is there some command (something like below that i've just made up) that will send it to all pcs on the network?
msg /SERVER:192.168.1.* /V message to send
windows windows-10 cmd.exe
windows windows-10 cmd.exe
asked Jul 7 '16 at 6:57
BlaineBlaine
1,0581633
1,0581633
Are you talking about the "net send" command?
– ejbytes
Jul 7 '16 at 7:01
formerly known as net send. To my understanding, "msg" is the post-xp replacement for net send
– Blaine
Jul 7 '16 at 7:06
Ah, I think I just found something on that. I'll post it up for you.
– ejbytes
Jul 7 '16 at 7:23
add a comment |
Are you talking about the "net send" command?
– ejbytes
Jul 7 '16 at 7:01
formerly known as net send. To my understanding, "msg" is the post-xp replacement for net send
– Blaine
Jul 7 '16 at 7:06
Ah, I think I just found something on that. I'll post it up for you.
– ejbytes
Jul 7 '16 at 7:23
Are you talking about the "net send" command?
– ejbytes
Jul 7 '16 at 7:01
Are you talking about the "net send" command?
– ejbytes
Jul 7 '16 at 7:01
formerly known as net send. To my understanding, "msg" is the post-xp replacement for net send
– Blaine
Jul 7 '16 at 7:06
formerly known as net send. To my understanding, "msg" is the post-xp replacement for net send
– Blaine
Jul 7 '16 at 7:06
Ah, I think I just found something on that. I'll post it up for you.
– ejbytes
Jul 7 '16 at 7:23
Ah, I think I just found something on that. I'll post it up for you.
– ejbytes
Jul 7 '16 at 7:23
add a comment |
1 Answer
1
active
oldest
votes
Message all users that are logged in the Network right now:
msg * Hi, Happy Monday!
Message all users on a list.
Type the command to read the list:
msg @users.txt Hi this is a message to team members on the list.
Get list of Network Users. Type the command:
net users
To put this users into a text file. Type the command:
net users > users.txt
Modify the list so that each user is on it's own line. Like this:
user1
user2
user3
For a complete list of commands:
Link to a comprehensive complete list
am I phrasing something wrong? cause this seems what everybody says. The issue is I want to send this message to an entirely seperate PC. Example: I have 3 laptops in the room, and I want to send a message from one lapotp to both others without having to individually specify them.
– Blaine
Jul 7 '16 at 15:30
...then again, it appears maybe i was wrong with the command usage as I can't seem to get the message to send to a different PC anyway
– Blaine
Jul 7 '16 at 15:36
or this is due to my lack of understanding of domain vs workgroup vs network
– Blaine
Jul 7 '16 at 15:38
Is everyone on the same network? I believe that every computer has to have the same Workgroup name. All the computers in my house are all in the same workgroup.
– ejbytes
Jul 7 '16 at 21:33
not sure how i check the work group... They are all connected to the same wifi router
– Blaine
Jul 7 '16 at 22:41
|
show 6 more comments
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "3"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fsuperuser.com%2fquestions%2f1097891%2fsend-message-to-whole-windows-network%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
Message all users that are logged in the Network right now:
msg * Hi, Happy Monday!
Message all users on a list.
Type the command to read the list:
msg @users.txt Hi this is a message to team members on the list.
Get list of Network Users. Type the command:
net users
To put this users into a text file. Type the command:
net users > users.txt
Modify the list so that each user is on it's own line. Like this:
user1
user2
user3
For a complete list of commands:
Link to a comprehensive complete list
am I phrasing something wrong? cause this seems what everybody says. The issue is I want to send this message to an entirely seperate PC. Example: I have 3 laptops in the room, and I want to send a message from one lapotp to both others without having to individually specify them.
– Blaine
Jul 7 '16 at 15:30
...then again, it appears maybe i was wrong with the command usage as I can't seem to get the message to send to a different PC anyway
– Blaine
Jul 7 '16 at 15:36
or this is due to my lack of understanding of domain vs workgroup vs network
– Blaine
Jul 7 '16 at 15:38
Is everyone on the same network? I believe that every computer has to have the same Workgroup name. All the computers in my house are all in the same workgroup.
– ejbytes
Jul 7 '16 at 21:33
not sure how i check the work group... They are all connected to the same wifi router
– Blaine
Jul 7 '16 at 22:41
|
show 6 more comments
Message all users that are logged in the Network right now:
msg * Hi, Happy Monday!
Message all users on a list.
Type the command to read the list:
msg @users.txt Hi this is a message to team members on the list.
Get list of Network Users. Type the command:
net users
To put this users into a text file. Type the command:
net users > users.txt
Modify the list so that each user is on it's own line. Like this:
user1
user2
user3
For a complete list of commands:
Link to a comprehensive complete list
am I phrasing something wrong? cause this seems what everybody says. The issue is I want to send this message to an entirely seperate PC. Example: I have 3 laptops in the room, and I want to send a message from one lapotp to both others without having to individually specify them.
– Blaine
Jul 7 '16 at 15:30
...then again, it appears maybe i was wrong with the command usage as I can't seem to get the message to send to a different PC anyway
– Blaine
Jul 7 '16 at 15:36
or this is due to my lack of understanding of domain vs workgroup vs network
– Blaine
Jul 7 '16 at 15:38
Is everyone on the same network? I believe that every computer has to have the same Workgroup name. All the computers in my house are all in the same workgroup.
– ejbytes
Jul 7 '16 at 21:33
not sure how i check the work group... They are all connected to the same wifi router
– Blaine
Jul 7 '16 at 22:41
|
show 6 more comments
Message all users that are logged in the Network right now:
msg * Hi, Happy Monday!
Message all users on a list.
Type the command to read the list:
msg @users.txt Hi this is a message to team members on the list.
Get list of Network Users. Type the command:
net users
To put this users into a text file. Type the command:
net users > users.txt
Modify the list so that each user is on it's own line. Like this:
user1
user2
user3
For a complete list of commands:
Link to a comprehensive complete list
Message all users that are logged in the Network right now:
msg * Hi, Happy Monday!
Message all users on a list.
Type the command to read the list:
msg @users.txt Hi this is a message to team members on the list.
Get list of Network Users. Type the command:
net users
To put this users into a text file. Type the command:
net users > users.txt
Modify the list so that each user is on it's own line. Like this:
user1
user2
user3
For a complete list of commands:
Link to a comprehensive complete list
edited Jul 7 '16 at 7:47
answered Jul 7 '16 at 7:28
ejbytesejbytes
1,6892721
1,6892721
am I phrasing something wrong? cause this seems what everybody says. The issue is I want to send this message to an entirely seperate PC. Example: I have 3 laptops in the room, and I want to send a message from one lapotp to both others without having to individually specify them.
– Blaine
Jul 7 '16 at 15:30
...then again, it appears maybe i was wrong with the command usage as I can't seem to get the message to send to a different PC anyway
– Blaine
Jul 7 '16 at 15:36
or this is due to my lack of understanding of domain vs workgroup vs network
– Blaine
Jul 7 '16 at 15:38
Is everyone on the same network? I believe that every computer has to have the same Workgroup name. All the computers in my house are all in the same workgroup.
– ejbytes
Jul 7 '16 at 21:33
not sure how i check the work group... They are all connected to the same wifi router
– Blaine
Jul 7 '16 at 22:41
|
show 6 more comments
am I phrasing something wrong? cause this seems what everybody says. The issue is I want to send this message to an entirely seperate PC. Example: I have 3 laptops in the room, and I want to send a message from one lapotp to both others without having to individually specify them.
– Blaine
Jul 7 '16 at 15:30
...then again, it appears maybe i was wrong with the command usage as I can't seem to get the message to send to a different PC anyway
– Blaine
Jul 7 '16 at 15:36
or this is due to my lack of understanding of domain vs workgroup vs network
– Blaine
Jul 7 '16 at 15:38
Is everyone on the same network? I believe that every computer has to have the same Workgroup name. All the computers in my house are all in the same workgroup.
– ejbytes
Jul 7 '16 at 21:33
not sure how i check the work group... They are all connected to the same wifi router
– Blaine
Jul 7 '16 at 22:41
am I phrasing something wrong? cause this seems what everybody says. The issue is I want to send this message to an entirely seperate PC. Example: I have 3 laptops in the room, and I want to send a message from one lapotp to both others without having to individually specify them.
– Blaine
Jul 7 '16 at 15:30
am I phrasing something wrong? cause this seems what everybody says. The issue is I want to send this message to an entirely seperate PC. Example: I have 3 laptops in the room, and I want to send a message from one lapotp to both others without having to individually specify them.
– Blaine
Jul 7 '16 at 15:30
...then again, it appears maybe i was wrong with the command usage as I can't seem to get the message to send to a different PC anyway
– Blaine
Jul 7 '16 at 15:36
...then again, it appears maybe i was wrong with the command usage as I can't seem to get the message to send to a different PC anyway
– Blaine
Jul 7 '16 at 15:36
or this is due to my lack of understanding of domain vs workgroup vs network
– Blaine
Jul 7 '16 at 15:38
or this is due to my lack of understanding of domain vs workgroup vs network
– Blaine
Jul 7 '16 at 15:38
Is everyone on the same network? I believe that every computer has to have the same Workgroup name. All the computers in my house are all in the same workgroup.
– ejbytes
Jul 7 '16 at 21:33
Is everyone on the same network? I believe that every computer has to have the same Workgroup name. All the computers in my house are all in the same workgroup.
– ejbytes
Jul 7 '16 at 21:33
not sure how i check the work group... They are all connected to the same wifi router
– Blaine
Jul 7 '16 at 22:41
not sure how i check the work group... They are all connected to the same wifi router
– Blaine
Jul 7 '16 at 22:41
|
show 6 more comments
Thanks for contributing an answer to Super User!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fsuperuser.com%2fquestions%2f1097891%2fsend-message-to-whole-windows-network%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Are you talking about the "net send" command?
– ejbytes
Jul 7 '16 at 7:01
formerly known as net send. To my understanding, "msg" is the post-xp replacement for net send
– Blaine
Jul 7 '16 at 7:06
Ah, I think I just found something on that. I'll post it up for you.
– ejbytes
Jul 7 '16 at 7:23