nisha has asked for the wisdom of the Perl Monks concerning the following question:
Thanks, Nisha#!/usr/bin/perl use Win32::Process::Info; $pi = Win32::Process::Info->new ("172.16.222.173", "WMI"); @pids = $pi->ListPids (); # Get all known PIDs @info = $pi->GetProcInfo (); # Get the max foreach $i (@pids) { print $i, "\n"; @proc = $pi->GetProcInfo($i); print @proc , "\n"; }
2006-06-07 Retitled by holli, as per Monastery guidelines
Original title: 'Win32::Process::Info'
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Using the results from Win32::Process::Info
by prasadbabu (Prior) on Jun 07, 2006 at 09:31 UTC | |
|
Re: Using the results from Win32::Process::Info
by planetscape (Chancellor) on Jun 07, 2006 at 16:45 UTC | |
|
Re: Using the results from Win32::Process::Info
by jesuashok (Curate) on Jun 07, 2006 at 09:27 UTC |