繁体   English   中英

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

[英]opening another program through windows service using python

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

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM