I am looking to run a subprocess and not let the subprocess be seen.
I have something like this:
proc = subprocess.call(["some.exe", "arg1", "arg2", "argN"])
The needs to be ran in the background.
I also tried something like this:
info = subprocess.STARTUPINFO()
info.dwFlags = 1
info.wShowWindow = 0
subprocess.Popen('some.exe arg1 arg2 argN', startupinfo=info)
Still no luck, any ideas?