Thursday, July 27, 2017
Chat with Friends through CMD
Chat with Friends through CMD

I think that you know about cmd, MS-DOS. So users of Linux know terminal and they use it often, because Linux users do actions with commands, but Windows users dont use very often cmd. Now in this post i will show you how to start chatting with friend through cmd. Thats very easy, just follow to next steps.
1.Open text document and past in code given below.
@echo off
:A
Cls
echo MESSENGER
set /p n=User:
set /p m=Message:
net send %n% %m%
Pause
Goto A
2. Now from File menu choose Save as and save it messenger.bat.
3. After that open cmd and drag that file over cmd and hit enter.
4. After you need to type your friend computer ip address and hit enter.
5. And now type your message you want to send it to your friend and again hit enter.
Thats it, now you can chat with friend through MS-DOS.