If you are a LAN power user then you must have used handy utility called as IPMSG - powerful LAN messenger. This messaging tool is very popular among LAN users for its simplicity and ability to handle and share large files. We will show you how can you automate IPMSG to send multiple messages with a single click.
What we are going to do is - we are going to turn your messaging app into an annoying messenger. You can do it with few lines of code and send messages. It's possible to send movies and songs using IPMSG. It's a lightweight tool and quite easy to use.
Here's a little explanation what this code does.
How did you find this trick? We will be coming up with another code to send same messages to multiple users with a single click. Let us know if you face any problem in comments.
What we are going to do is - we are going to turn your messaging app into an annoying messenger. You can do it with few lines of code and send messages. It's possible to send movies and songs using IPMSG. It's a lightweight tool and quite easy to use.
IPMSG - Send Multiple message with single click
Let's jump to the actual step where we create batch file to execute process.- Create a new text file.
- Rename it to 'Trick.txt'
- Now you are going to rename the extension to Trick.bat.
- BAT is extension for the batch file which helps you write command which is understood by Window system.
- Make sure that you have kept setting which will able to change the extension of the file.
- Once it is done, Open it in Notepad and copy paste following code.
SET ip=172.18.50.39 SET no=100 SET msgtext=Pikaaaboooo! for /l %%X in (1,1,%no%) do ("C:\Program Files\IPMsg\ipmsg.exe" /MSG /NOSEAL %ip% %msgtext%) & echo %%X :end
Here's a little explanation what this code does.
- ip is the IP address of the victim.
- no is Number of times you want the victim to get message
- msgtext is the text message which you wish to share.
Let the prank begin
Find the Ip address of the victim and replace his/her ip address. If you are certain about IP address, next thing you should do is type the message which your victim wants to see. The number of messages is important so choose the number wisely.How did you find this trick? We will be coming up with another code to send same messages to multiple users with a single click. Let us know if you face any problem in comments.
Sir plz paste the code to send same messages to multiple users with a single click
ReplyDeleteI Have created a new script to send this to multiple user
Delete----
set servers=172.18.51.4,172.18.75.32,172.18.50.41
SET no=1
SET msgtext=test!
for %%i in (%servers%) do (
for /l %%X in (1,1,%no%) do ("C:\Program Files\IPMsg\ipmsg.exe" /MSG /NOSEAL %%i %msgtext%) & echo %%X
echo %%i
)
:end
Thank you so much sir,,,
DeleteSir I want to send msg in multiline text. plz help