Possible Duplicate:
Run python script without DOS shell appearing
How do I hide the console when I use os.system() or subprocess.call()?
I need to make a Python2.2 program to close a process. The problem is that I do not want the user to see the CMD window. Is it possible?
import os
os.system("taskkill /im injector* /f")
os.system("taskkill /im *injector /f")