我在python中有简单的Windows服务,我需要运行一些外部应用程序,例如notepad.exe。当我尝试在Windows服务中启动此应用程序时,不会发生这种情况。但是,当我在Windows任务管理器中打开进程列表时,我可以看到notepad.exe。 我的启动notepad.exe的代码:
proc = subprocess.Popen('"C:/Windows/System32/notepad.exe"', shell=True, bufsize=128,stdin=subprocess.PIPE, stdout=subprocess.PIPE, stderr=subprocess.PIPE)
我该如何解决?