Hi..
I am using the following module to send a message to other computer.
[code=perl]
use Win32::NetSend;
my $NetSend = Win32::NetSend->new( to => "10.0.3.40|user name", message => "Test Msg!");
$NetSend->Send();
[/code]
Here I am facing the problem is,
If the IP address, I specified is using more than one users means (server), this code will send the message to all connected users.
I want to send a message to particular user in remote login..
i.e user under specified IP address.
kindly suggest any one reg. this
Thanks
I am using the following module to send a message to other computer.
[code=perl]
use Win32::NetSend;
my $NetSend = Win32::NetSend->new( to => "10.0.3.40|user name", message => "Test Msg!");
$NetSend->Send();
[/code]
Here I am facing the problem is,
If the IP address, I specified is using more than one users means (server), this code will send the message to all connected users.
I want to send a message to particular user in remote login..
i.e user under specified IP address.
kindly suggest any one reg. this
Thanks
Comment