Use IPMSG (LAN messenger) to send multiple messages with single click

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.

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.
About author

Written by Sangram Nandkhile, A software developer and a part time blogger. You can follow him on the Facebook and twitter web or sign up for the email newsletter for your daily dose of how-to guides and video tutorials.

3 comments :

  1. Sir plz paste the code to send same messages to multiple users with a single click

    ReplyDelete
    Replies
    1. I Have created a new script to send this to multiple user
      ----
      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

      Delete
    2. Thank you so much sir,,,

      Sir I want to send msg in multiline text. plz help

      Delete