vote up 1 vote down star
1

I run Python 2.5 on Windows, and somewhere in the code I have

subprocess.Popen("taskkill /PID " + str(p.pid))

to kill IE window by pid. The problem is that without setting up piping in Popen I still get output to console - SUCCESS: The process with PID 2068 has been terminated. I debugged it to CreateProcess in subprocess.py, but can't go from there.

Anyone knows how to disable this?

flag

67% accept rate
What is the problem with subprocess.Popen("taskkill /PID " + str(p.pid) + " > NUL")? – Svetlozar Angelov Aug 7 at 13:50
Maybe because python runs on Windows? It says that '>' is not a valid option of taskkill command – Denis M Aug 7 at 14:12
1  
I tried that first, for some reason it doesn't parse correctly. >>> ERROR: Invalid Argument/Option - '>'. Type "TASKKILL /?" for usage. That works on the cmd line though. – Mark Aug 7 at 14:14

2 Answers

vote up 2 vote down check
fh = open("NUL","w")
subprocess.Popen("taskkill /PID " + str(p.pid), stdout = fh, stderr = fh)
fh.close()
link|flag
Thank you! This piece actually works. I completely forgot about NUL. – Denis M Aug 7 at 14:12
1  
I think there's a race condition there — you may close the pipe before your subprocess has finished and cause it to terminate early. – chrispy Aug 7 at 20:01
@chrispy - you're correct, I think there should be a .communicate() in there – orip Nov 8 at 12:26
vote up 1 vote down

Does this work?

from subprocess import Popen, PIPE
Popen(("taskkill", "/PID", str(p.pid)), stdout=PIPE, stderr=PIPE).communicate()

I always pass in arrays to subprocess as it saves me worrying about escaping. The Pipe/communicate method is cross-platform — useful for future code, not this particular example, of course.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.