Saturday, December 31, 2011

Send messages through your command prompt


You can send messages using command prompt but you can't send any attached files/images.

1: Copy the below code in a notepad and save the file as messenger.bat

code:
@echo off
:A
Cls
echo MESSENGER
set /p n=User:
set /p m=Message:
net send %n% %m%
Pause
Goto A

2: Drag the batch file and place it on command prompt now you enter user and messages.

Thats it!

No comments:

Post a Comment