我试图通过使用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
我错过了什么? 或者我正在做错误的方式! 请帮忙
Windows服务在会话0中运行,交互式程序在不同的会话中运行。 通常,当有一个登录用户时,这将是会话1。 现在,您的代码将在会话0中创建进程,因为它在会话0中运行。所以会话1中的交互式用户桌面无法与这些进程交互。
可以从父进程的不同会话中开始处理运行,但这并不容易: http : //blogs.msdn.com/b/winsdk/archive/2009/07/14/launching-an -interactive -过程-从窗口服务功能于Windows的Vista的和later.aspx
一个可能的出路是运行后台进程,每个用户登录时启动。 该服务可以使用IPC与后台进程进行通信,并要求后台进程在交互式桌面上执行启动进程的工作。