Hi monks
I ran this code:
#!/usr/bin/perl -w
use strict;
use Win32::OLE;
use Win32::Process::Info;
my $pi = Win32::Process::Info->new (undef, 'WMI');
print "$pi\n\n";
my @info = $pi->GetProcInfo (); # Get the max relationships.
for (my $p = 0; $p < scalar @info; $p++)
{
if (!($info[$p]{'ProcessId'}))
{
$info[$p]{'ProcessId'} = '';
}
if (!($info[$p]{'Name'}))
{
$info[$p]{'Name'} = '';
}
if (!($info[$p]{'ExecutablePath'}))
{
$info[$p]{'ExecutablePath'} = '';
}
my $pid = $info[$p]{'ProcessId'};
my $pnm = $info[$p]{'Name'};
my $pex = $info[$p]{'ExecutablePath'};
print "ID:$pid\tNAME:$pnm\tExPath:$pex\n";
}
and I got the results I wanted.
but before that I got many warnings about LocalTime
which I don't understand.
these are the warnings:
First Warning:
Use of uninitialized value in integer addition (+) at C:/Perl/lib/Time/Local.pm line 76.
Use of uninitialized value in integer multiplication (*) at C:/Perl/lib/Time/Local.pm line 76.
Use of uninitialized value in integer multiplication (*) at C:/Perl/lib/Time/Local.pm line 76.
Use of uninitialized value in pack at C:/Perl/lib/Time/Local.pm line 67.
Use of uninitialized value in pack at C:/Perl/lib/Time/Local.pm line 67.
Use of uninitialized value in integer addition (+) at C:/Perl/lib/Time/Local.pm line 68.
Use of uninitialized value in integer addition (+) at C:/Perl/lib/Time/Local.pm line 69.
Use of uninitialized value in integer addition (+) at C:/Perl/lib/Time/Local.pm line 67.
Repetetive Warning:
Use of uninitialized value in integer addition (+) at C:/Perl/lib/Time/Local.pm line 76.
Use of uninitialized value in integer multiplication (*) at C:/Perl/lib/Time/Local.pm line 76.
Use of uninitialized value in integer multiplication (*) at C:/Perl/lib/Time/Local.pm line 76.
Use of uninitialized value in pack at C:/Perl/lib/Time/Local.pm line 67.
Use of uninitialized value in pack at C:/Perl/lib/Time/Local.pm line 67.
Use of uninitialized value in integer addition (+) at C:/Perl/lib/Time/Local.pm line 67.
The warnings come when this line runs:
my @info = $pi->GetProcInfo ();
I need help overcoming these warnings
Thanks Ahead,
Moked.
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.