ASPN ActiveState Programmer Network
ActiveState
/ Home / Perl / PHP / Python / Tcl / XSLT /
/ Safari / My ASPN /
Cookbooks | Documentation | Mailing Lists | Modules | News Feeds | Products | User Groups


Recent Messages
List Archives
About the List
List Leaders
Subscription Options

View Subscriptions
Help

View by Topic
ActiveState
.NET Framework
Open Source
Perl
PHP
Python
Tcl
Web Services
XML & XSLT

View by Category
Database
General
SOAP
System Administration
Tools
User Interfaces
Web Programming
XML Programming


MyASPN >> Mail Archive >> perl-win32-admin
perl-win32-admin
RE: Problems with RasAdmin module
by Bellenger, Bruno (Paris) other posts by this author
Apr 27 2001 5:43PM messages near this date
view in the new Beta List Site
Win32::Shortcut problem with help | Re: Problems with RasAdmin module
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 DumpHash{
    my (%temp) = @_;

    foreach $Temp (sort (keys (%temp))){
        print "\t$Temp = $temp{$Temp}\n";
    }
}

Check Dave Roth's site about RasAdmin. 
http://www.roth.net/
While you're there, check out his two excellent books about Perl for Win32
admin.

The site has the full RasAdmin_Test.pl script which works nicely. It is
available at the below link :
ftp://ftp.roth.net/pub/ntperl/rasadmin/





>  -----Original Message-----
>  From:	Xavier Calatrava [SMTP:xcalatrava@[...].es]
>  Sent:	27 April 2001 10:05
>  To:	perl-win32-admin@[...].com
>  Subject:	Problems with RasAdmin module
>  
>  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
>  fail.
>  
>  I got the same result for all the functions in this module. I'm using
>  WinNT4
>  workstation sp6a with perl AS5.22.
>  
>  Any ideas?
>  
>  _______________________________________________
>  Perl-Win32-Admin mailing list
>  Perl-Win32-Admin@[...].com
>  http://listserv.ActiveState.com/mailman/listinfo/perl-win32-admin

_______________________________________________
Perl-Win32-Admin mailing list
Perl-Win32-Admin@[...].com
http://listserv.ActiveState.com/mailman/listinfo/perl-win32-admin
Thread:
Bellenger, Bruno (Paris)
Xavier

Privacy Policy | Email Opt-out | Feedback | Syndication
© ActiveState Software Inc. All rights reserved