微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

使用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与后台进程通信,并要求后台进程执行在交互式桌面中启动进程的腿部工作.

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐