Loading

About Me

My photo
Always expect the unexpected move from me....

Wednesday, September 21, 2011

Create A personal messenger


Hay Friends in this Post I’ll show that how you can create your own Personal Messenger using Notepad…
First open up Notepad from Start > All Programs > Accessories > Notepad
Now to create your Personal Messenger all you need is to find your friend’s IP Address.. It’s up to that how you will find your friend’s IP Address….
Now Paste the code in the notepad:
*****************************************************************
@echo off
:Messenger
cls
echo Personal Messenger
set /p u=User:
set /p m=Message:
net send %u% %m%
pause > null
GOTO Messenger
****************************************************************
You can change the name of the Messenger form “Personal Messenger” to whatever you want..
Save the File by clicking File > Save As…
Save the file with whatever name you want to save “myfile.bat”
Now open up command prompt from Start > All Programs > Accessories > Commad Prompt
Navigate to the batch file from command prompt ans start the file.
Enter the IP Address of your Friend then type the message and hit Enter, your friend will receive that message…
You can also save your code by converting your “.bat” to “.exe” using any batch to exe converter…
Have a nice Day Guys….

No comments:

Post a Comment