in reply to Using the results from Win32::Process::Info
If you are familiar with reference, try using Data::Dumper
The above code will give a clear picture, then you can access it from the datastructure it shows.use Data::Dumper; @pids = $pi->ListPids (); # Get all known PIDs @info = $pi->GetProcInfo (); # Get the max print Dumper [ @pids ]; print Dumper [ @info ];
|
|---|