http://www.perlmonks.org?node_id=990325


in reply to Re^2: Win32::Process::Create fails when i use ">" to redirect the screen output to a file
in thread Win32::Process::Create fails when i use ">" to redirect the screen output to a file

its working when i use "cmd.exe" and provide " too.exe -h" as commandline but the problem is when i want to kill it its killing cmd.exe....but actully i wanted to kill tool.exe

  • Comment on Re^3: Win32::Process::Create fails when i use ">" to redirect the screen output to a file

Replies are listed 'Best First'.
Re^4: Win32::Process::Create fails when i use ">" to redirect the screen output to a file
by james2vegas (Chaplain) on Aug 29, 2012 at 07:20 UTC
    Which is the same problem in the other thread which is unsolved. Perhaps use Win32::Process::List to get the process id to kill and then do Win32::Process::Open on that PID, and kill it that way.