HOW TO SEND MESSAGES USING COMMAND PROMPT *IP*(Internet Protocol)
Hi 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
:A
Cls
echo MESSENGER
set /p n=User:
set /p m=Message:
net send %n% %m%
Pause
Goto A
Step 1: Connect With Other People
When you open the file, Messenger, it will open the command
prompt and show the following text:
Messenger
User:
User:
Then write the IP of the person you are trying to reach.
ALTERNATIVE
@echo
off
echo Messenger
echo When typing the computer name, type
echo in /server:computer replacing
echo computer with the IP adress of the computer.
:START
set /p c=Enter computer name here:
:A
set /p m=Enter message here:
msg * %c% %m%
GoTo A
This allows you to create a messenger on Windows 7 and after entering the ip address of the computer for the first you can simply send messages after that, without needing to re-enter the ip address
echo Messenger
echo When typing the computer name, type
echo in /server:computer replacing
echo computer with the IP adress of the computer.
:START
set /p c=Enter computer name here:
:A
set /p m=Enter message here:
msg * %c% %m%
GoTo A
This allows you to create a messenger on Windows 7 and after entering the ip address of the computer for the first you can simply send messages after that, without needing to re-enter the ip address
Comments
Post a Comment