from subprocess import Popen, PIPE CREATE_NEW_PROCESS_GROUP = 0x00000200 DETACHED_PROCESS = 0x00000008 p = Popen(["myexe.exe", "arg1"], ...
確定! 回上一頁