Ever wondered that this stupid looking MSDOS can be used for chatting ?
I bet, you’ve never
Lets see how to do it. Using command prompt, you can have a personal chat with your friend with the help of ip address. You dont need any type of software for that.Just a bunch of code is enough for this .
Here we go :
1. Copy the following code in red color in notepad and save the file as messenger.bat
@echo off
:A
Cls
echo MESSENGER
set /p n=User:
set /p m=Message:
net send %n% %m%
Pause
Goto A
2. Open the file which You’ve just named as messenger.bat
You”ll see something like this..
MESSENGER
User:
3. Now enter your friend’s ip address after User: on the black command prompt screen.
4. After this, you’ll see this :
Message:
5. Now type the message you want to send after Message:
In all, it will look like this :
MESSENGER
User:27.196.391.193
Message: Hi
Press enter and start chatting
NOTE : Works only on computers which are connected in a network.


