I would like to create a subprocess of a process.
What would be a working example which shows how to accomplish this?
if os.name == 'nt': startupinfo = subprocess.STARTUPINFO() startupinfo.dwFlags |= subprocess._subprocess.STARTF_USESHOWWINDOW subprocess.call(os.popen(tempFileName), shell=True) os.remove(tempFileName)