- 论坛徽章:
- 0
|
my $P = Win32: rocess::List->new(); constructor
my %list = $P->GetProcesses(); returns the hashes with PID and process name
foreach my $key ( keys %list ) {
# $list{$key} is now the process name and $key is the PID
print sprintf("%30s has PID %15s", $list{$key}, $key) . "\n";
}
连perldoc上的例子都跑不通
PS:默认安装的activeperl里面居然有BUG,连CPAN的module都装不上,害的我自己手动修复它的Path.pm
Can't load 'C:/Perl/site/lib/auto/Win32/Process/List/List.dll' for module Win32: rocess::List: load_file:内存分配访问无效。 at C:/Perl/lib/DynaLoader.pm line 201.
at C:\cams\get\cams.com\cams.pl line 5
Compilation failed in require at C:\cams\get\cams.com\cams.pl line 5.
BEGIN failed--compilation aborted at C:\cams\get\cams.com\cams.pl line 5.
[ 本帖最后由 qnxchina 于 2009-11-23 15:39 编辑 ] |
|