Those are 2 different things. There are scripts to control one or the
other.
Win32::RASE, is to control dialup entries & network connections.
Win32::SerialPort, is for serial port management.
You can find them on CPAN.
-Original Message-
From: Xavier [mailto:[EMAIL PROTECTED]]
Sent: F
- Original Message -
From: "rotaiv" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Friday, April 27, 2001 8:12 AM
Subject: Re: how to check the status of a networked printer
> At 04/26/2001 08:49 PM, Paul Popour wrote:
>
> >Do you want to monitor the status of the printer, the
> >com
Has anyone been able to get Setupsup to work on Perl 5.6. I can't get it
loaded via PPM and I tried to download the thing and do the makefile.pl,
nmake processes, but that didn't work at all. Does anyone know where it can
be installed from?
Thanks,
Tim
_
At 04/26/2001 08:49 PM, Paul Popour wrote:
>First, don't reply to one thread and change the subject without
>changing the subject line. Bad manners.
I agree and this was not my intent. My apologies.
>Do you want to monitor the status of the printer, the
>communication interface, or the print
Does anyone knows a way to control modem connections via perl script ?.
I'd like to connect/diconnect to my ISP automatically from perl.
Thanks
___
Perl-Win32-Admin mailing list
[EMAIL PROTECTED]
http://listserv.ActiveState.com/mailman/listinfo/perl-w
Solved, I had a problem with the RAS service.
Thanks for your help Bruno.
- Original Message -
From: "Bellenger, Bruno (Paris)" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Cc: "'Xavier Calatrava'" <[EMAIL PROTECTED]>
Sent: Friday, April 27, 2001 11:43 AM
Subject: RE: Problems with RasAd
I've just installed Win32::Shortcut using PPM. So far no problem. But the
help file installed in htmlhelp/pkg-Win32-shortCut.chm does not work. I
tried on a W2K machine with IE5 and on a NT4 machine with IE4.
Note: I've the same problem with Win32-AdminMisc
Thank you for any ... help ;-)
Your code as shown is incomplete.
At the very minimum you should have :
use Win32::RasAdmin;
$RASServer = "RASservername" ;
if (Win32::RasAdmin::ServerGetInfo("$RASServer", \%Hash)){
print "success:\n";
DumpHash(%Hash);
print "\n" ;
}else{
print "fail.\n";
}
sub Dump
Hi all!
When I execute the code
use Win32::RasAdmin;
if (Win32::RasAdmin::ServerGetInfo($RASServer, \%Hash)){
print "success:\n";
DumpHash(%Hash);
}else{
print "fail.\n";
}
I get
Time (in msec) for CallNamedPipe to complete: 250
Time (in msec) for CallNamedPipe to complete: 251
fai