Custom Search

Chat from DOS or Command Prompt








You can easily chat using the following batch file from command prompt just entering the IP address of the computer that you want to chat

Copy the following code to notepad and save this giving extension .BAT
------------------Code------------------------------------------------------
@echo off
:A
Cls
echo MESSENGER
set /p f=Fastpoint.blogspot.com Press Enter
set /p b=By Sanjay email: chaulagainsanjay2004@gmail.com PRESS Enter
set /p n=User(Enter IP Address):
set /p m=Message:
net send %n% %m%
Pause
Goto A
--------------------------------------------------------------------------

Here the importanat command is net send which sends message to the IP address
In the user type the IP address of reciptent


Please Comment !