Hi ! there I am back again with another interesting geeky thing for you. Today we will create our own simple CMD based messenger for chatting with anyone on another PC. So lets get started.
REQUIREMENTS
Windows PC.
Any Text Editor ( Notepad, Notepad++, Sublime etc).
IP Address of the PC of person you want to chat.
Internet Connection.
LETS BEGIN
Open Notepad or any other text editor.
Open a new file and paste the code below in it.
@ echo off
\:A
Cls
echo MESSENGER
set /p n=User:
set /p m=Message:
net send %n% %m%
Pause
Goto A
Save the file on Desktop with name messenger.bat and Close it.
So now you have finished making your own messenger in Windows. So quickly call your friend and ask for his IP .
If you don’t know what is your IP open CMD and type ipconfig and press enter key.
You will see the IPv4 addressNote it that’s your IP.
HOW TO USE MESSENGER
Just double click on file and enter your friend’s IP address in USER and press enter and the text in MESSAGE and press enter.