I want to run command
ipmsg.exe /MSG 192.168.0.8 "TEXT MESSAGE"
by a java program. Can anybody help me?
I am trying the following lines. But it is not working..
Runtime run_t = Runtime.getRuntime();
Process notify = run_t.exec("cmd /c ipmsg.exe /MSG 192.168.0.8 Hello");
PS:- My computer is connected to the computer with ip address 192.168.0.8 with LAN.