加入收藏 | 设为首页 | 会员中心 | 我要投稿 李大同 (https://www.lidatong.com.cn/)- 科技、建站、经验、云计算、5G、大数据,站长网!
当前位置: 首页 > 综合聚焦 > 服务器 > Windows > 正文

windows – 如何在子进程中启动崩溃(很少)应用程序

发布时间:2020-12-14 02:16:54 所属栏目:Windows 来源:网络整理
导读:我正在使用 python应用程序,它需要每天执行大约2 000次专有应用程序(它会不时崩溃). 问题是当应用程序崩溃时,Windows自动触发WerFault会使程序挂起,因此python’s subprocess.call() 将永远等待用户输入(该应用程序必须在周末,节假日,24/7运行……所以这是不
我正在使用 python应用程序,它需要每天执行大约2 000次专有应用程序(它会不时崩溃).

问题是当应用程序崩溃时,Windows自动触发WerFault会使程序挂起,因此python’s subprocess.call()将永远等待用户输入(该应用程序必须在周末,节假日,24/7运行……所以这是不可接受的).

如果关于使用睡眠;轮询;杀;终止但这意味着失去使用communication()的能力,应用程序可以从几毫秒运行到2小时,因此设置固定超时将无效

我也试过turning on automatic debugging(使用一个脚本,它会占用应用程序的崩溃转储并终止id),但不知怎的,这个howto在我的服务器上不起作用(WerFault仍然出现并等待用户输入).

其他几个教程如this也没有任何效果.

题:
有没有办法防止WerFault显示(等待用户输入)?这是更多系统编程问题

替代问题:在python中有一种优雅的方式如何检测应用程序崩溃(是否显示了WerFault)

解决方法

简单(和丑陋)的答案,不时监视WerFault.exe实例,特别是与违规应用程序的PID相关联的实例.杀了它.处理WerFault.exe很复杂,但您不想禁用它 – 请参阅 Windows Error Reporting服务.

>按名称获取与WerFault.exe匹配的进程列表.我用psutil包.请谨慎使用psutil,因为进程是缓存的,请使用psutil.get_pid_list().
>使用argparse解码其命令行.这可能是过度的,但它利用现有的python库.
>根据PID确定保存应用程序的进程.

这是一个简单的实现.

def kill_proc_kidnapper(self,child_pid,kidnapper_name='WerFault.exe'):
    """
    Look among all instances of 'WerFault.exe' process for an specific one
    that took control of another faulting process.
    When 'WerFault.exe' is launched it is specified the PID using -p argument:

    'C:WindowsSysWOW64WerFault.exe -u -p 5012 -s 68'
                             |               |
                             +-> kidnapper   +-> child_pid

    Function uses `argparse` to properly decode process command line and get
    PID. If PID matches `child_pid` then we have found the correct parent
    process and can kill it.
    """
    parser = argparse.ArgumentParser()
    parser.add_argument('-u',action='store_false',help='User name')
    parser.add_argument('-p',type=int,help='Process ID')
    parser.add_argument('-s',help='??')

    kidnapper_p = None
    child_p = None

    for proc in psutil.get_pid_list():
        if kidnapper_name in proc.name:
            args,unknown_args = parser.parse_known_args(proc.cmdline)
            print proc.name,proc.cmdline

            if args.p == child_pid:
                # We found the kidnapper,aim.
                print 'kidnapper found: {0}'.format(proc.pid)
                kidnapper_p = proc

    if psutil.pid_exists(child_pid):
        child_p = psutil.Process(child_pid)

    if kidnapper_p and child_pid:
        print 'Killing "{0}" ({1}) that kidnapped "{2}" ({3})'.format(
            kidnapper_p.name,kidnapper_p.pid,child_p.name,child_p.pid)
        self.taskkill(kidnapper_p.pid)
        return 1
    else:
        if not kidnapper_p:
            print 'Kidnapper process "{0}" not found'.format(kidnapper_name)
        if not child_p:
            print 'Child process "({0})" not found'.format(child_pid)

    return 0

现在,taskkill函数使用正确的PID调用taskkill命令.

def taskkill(self,pid):
    """
    Kill task and entire process tree for this process
    """
    print('Task kill for PID {0}'.format(pid))
    cmd = 'taskkill /f /t /pid {0}'.format(pid)
    subprocess.call(cmd.split())

(编辑:李大同)

【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容!

    推荐文章
      热点阅读