in reply to Re^2: Install Proc::ProcessTable on windows by ppm
in thread Install Proc::ProcessTable on windows by ppm

You also need to have cygwin installed to make it work under Windows, as stated in the Proc::ProcessTable readme file.

When i needed to do what killfam does (i.e : kill all sons of a given PID) i used Win32::PerfLib recursively to get a list of all sons of a pid and then called Win32::Process:KillProcess on the resulting list .

Also it may be interesting to look at Win32::Job ( perl 5.8) since it allows job management :

( from Win32::Job description ) .

Cheers,
zlr_

  • Comment on Re^3: Install Proc::ProcessTable on windows by ppm