in reply to Is the program there? (W32)
you just gived me a reason to reboot into Windows XP :)
i found 2 ways of getting the PID of a process on a Windows XP system:
use Win32::Process::Info from CPAN to get more details
#!perl use strict; use warnings; use Data::Dumper; use Win32::Process::Info; my $procs = Win32::Process::Info->new(); print Dumper $procs->GetProcInfo();
hope this helps...
:)))))
|
|---|