我正在尝试使用python代码通过Windows服务打开/执行另一个程序。当Windows服务启动时,将执行另一个程序,即记事本。代码没有错误但没有打开程序。代码如下。
代码:
import win32serviceutil
import win32service
import win32event
import win32com.shell.shell as w32shell
import os
import sys
import win32process as process
class SmallestPythonService(win32serviceutil.ServiceFramework):
_svc_name_ = "BSmallestPythonService"
_svc_display_name_ = "BSmallest possible Python Service"
def __init__(self, args):
win32serviceutil.ServiceFramework.__init__(self, args)
# Create an event which we will use to wait on.
# The "service stop" request will set this event.
self.hWaitStop = win32event.CreateEvent(None, 0, 0, None)
def SvcStop(self):
# Before we do anything, tell the SCM we are starting the stop process.
self.ReportServiceStatus(win32service.SERVICE_STOP_PENDING)
# And set my event.
win32event.SetEvent(self.hWaitStop)
def SvcDoRun(self):
win32event.WaitForSingleObject(self.hWaitStop, win32event.INFINITE)
import subprocess
cmd = "notepad.exe"
process = subprocess.Popen(cmd, stdout=subprocess.PIPE, creationflags=0x08000000)
process.wait()
if __name__=='__main__':
win32serviceutil.HandleCommandLine(SmallestPythonService)
在SvcDoRun方法中,我尝试了以下代码,但没有成功:
import subprocess
subprocess.Popen('calc.exe', shell=False)
也试过但没有成功:
import subprocess
subprocess.call('notepad.exe', shell=False)
也试过但没有成功:
import win32api
win32api.WinExec('NOTEPAD.exe') # Works seamlessly
我错过了什么?或者我是以错误的方式做到的!请帮忙
答案 0 :(得分:3)
Windows服务在会话0中运行,交互式程序在不同的会话中运行。通常,当有一个登录用户时,这将是会话1。现在,您的代码将在会话0中创建进程,因为它在会话0中运行。因此会话1中的交互式用户桌面无法与这些进程交互。
可以在进程父进程的不同会话中启动进程,但这并不容易:http://blogs.msdn.com/b/winsdk/archive/2009/07/14/launching-an-interactive-process-from-windows-service-in-windows-vista-and-later.aspx
一种可行的方法是运行每个用户登录时启动的后台进程。该服务可以使用IPC与后台进程通信,并要求后台进程在交互式桌面中完成启动进程的腿部工作。