Social Sciences, asked by Adhyatma923, 1 year ago

How to send message to another computer using cmd?

Answers

Answered by allyayush
0

Hello everyone !!! Today I will show you how to make chat with cmd (command prompt).

First open Notepad and copy and paste the following code. Then save as "Messenger.bat" and close the Notepad

@echo off
:A
Cls
echo MESSENGER
set /p n=User:
set /p m=Message:
net send %n% %m%
Pause
Goto A

Step 1: Connect With Other PeopleWhen you open the file, Messenger, it will open the command prompt and show the following text:Messenger
User:Then write the IP of the person you are trying to reach.
Answered by komi1897ramanujan
0
1

Open the Command Prompt. You can use the net send command to send messages to other computers on your network. The command is used through the Command Prompt. You can open the Command Prompt from the Start menu or by pressing ⊞ Win+R and typing "cmd".If you are using Windows Vista, 7, 8, 8.1, or 10, see the next section. The net send command was discontinued starting with Windows Vista, and replaced with a similar msgcommand.



2

Start the command. Type net sendand press space. You'll be adding information to the end of the command to specify where the message goes and what it says.



3

Define who you are sending the message to. There are several different ways you can address the message to someone specific or to an entire group:[1]net send name - You can enter a username or computer name on your network to send the message to someone specific. If there is a space in the name, surround the name in quotes (e.g. net send "John Doe").net send * - This will send the message to all of the users on your current domain or workgroup.net send /domain:name - This will send the message to everyone in the specified domain or workgroup.net send /users - This will send the message to all of the users currently connected to the server.



4

Add the message. Type out the message that you want to send after you've specified the recipient(s). Your message can be up to 128 characters.For example - net send "John Doe" Let's meet up in 10 minutes.



5

Send the message. Once you're finished typing the message, press ↵Enter to send it. The recipient will receive the message in a Windows dialog box, as long as they are logged in and connected to the network.

Similar questions