On 2/1/06, Ryan Frantz <[EMAIL PROTECTED]> wrote:
snip
> I agree.  I've been looking over the available documentation for the
> module to find a way to get more info.  Is there anything available in
> Perl itself that may help provide additional diags?
snip

Modules often set $! for you.  Try

my $processObj = Win32::Process::Info->new($server, 'WMI') or die
"error with new:$!";
my @procInfo = $processObj->GetProcInfo() or die "error with get:$!;

If nothing else you will find which method is failing.

--
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
<http://learn.perl.org/> <http://learn.perl.org/first-response>


Reply via email to