in reply to Re^4: Kill a process in perl windows and proceed only if it killed the process
in thread Kill a process in perl windows and proceed only if it killed the process
I am not creating the process using Win32::Process::Create().
Then you will need to obtain a handle to the process using:
And then call the Wait method on that handle:
$proc->Wait( <milliseconds|INFINITE> );
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^6: Kill a process in perl windows and proceed only if it killed the process
by Anonymous Monk on Jul 24, 2012 at 17:12 UTC | |
by BrowserUk (Patriarch) on Jul 24, 2012 at 19:58 UTC |