使用python通过windows服务打开另一个程序

我正在尝试使用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-process-from-windows-service-in-windows-vista-and-later.aspx

一种可行的方法是运行每个用户登录时启动的后台进程.该服务可以使用IPC与后台进程通信,并要求后台进程执行在交互式桌面中启动进程的腿部工作.

相关文章

Windows2012R2备用域控搭建 前置操作 域控主域控的主dns:自...
主域控角色迁移和夺取(转载) 转载自:http://yupeizhi.blo...
Windows2012R2 NTP时间同步 Windows2012R2里没有了internet时...
Windows注册表操作基础代码 Windows下对注册表进行操作使用的...
黑客常用WinAPI函数整理之前的博客写了很多关于Windows编程的...
一个简单的Windows Socket可复用框架说起网络编程,无非是建...