CHATTING WITH COMMAND PROMPT
If you have problem with messaging software to chat online (in offices especially where everything is blocked on firewall) then use command prompt if you know IP ADDRESS of your FRIEND. Lets see how to perform..
>> Write or copy & paste below code in notepad & save it as msg.bat
@echo off
:ACls
echo MESSENGER
set /p n=User:
set /p m=Message:
net send %n% %m%
Pause
Goto A