• 企业400电话
  • 微网小程序
  • AI电话机器人
  • 电商代运营
  • 全 部 栏 目

    企业400电话 网络优化推广 AI电话机器人 呼叫中心 网站建设 商标✡知产 微网小程序 电商运营 彩铃•短信 增值拓展业务
    python使用Windows的wmic命令监控文件运行状况,如有异常发送邮件报警

        使用Windows的wmic命令,获取可执行文件的运行状况、文件路径、PID,如果可执行文件挂掉,就重启并邮件告警。

          因为监控的可执行文件的文件名一样,不好区分,所以我使用文件的绝对路径为标准来判断是否正常运行,代码及详细解释如下:

    # -*- coding: utf-8 -*- 
    import os
    import win32api
    import smtplib
    from email.mime.text import MIMEText
    
    
    def get_pidWay(file_name):
      ept_list = []
      temp_list = []
      pid_way = os.popen("wmic process where name='" + file_name + "' get processid,executablepath,name").readlines()
      for j in pid_way:
        temp_list.append(j.split())
      while ept_list in temp_list:
        temp_list.remove(ept_list)
      return(temp_list)
     
    def open_file(filePath):
      win32api.ShellExecute(0, 'open', filePath, '','',1)
    
    def mailsend (mailtext,mailsubject):
      mailserver = "smtp.qq.com"
      username_send = '发送的邮箱地址'
      password = '密码'
      username_recv = '接收的邮箱地址'
      mail = MIMEText(mailtext)
      mail['Subject'] = mailsubject
      mail['From'] = username_send
      mail['To'] = username_recv
      smtp = smtplib.SMTP_SSL(mailserver)
      smtp.login(username_send,password)
      smtp.sendmail(username_send,username_recv,mail.as_string())
      smtp.quit()
      print ('success')
      
    
    
    file_path = "可执行文件的绝对路径"
    fileName = '可执行文件名'
    mailtext = '报警邮件内容'
    mailsubject = '报警邮件标题'
    exe_info = get_pidWay(fileName)
    pos = 0
    for i in range(len(exe_info)):
      if file_path in exe_info[i][0]:
        pos = 1
      else:
        pass
    
    if pos == 1:
      pass
    else:
      open_file(r"可执行文件名")
      mailsend(mailtext,mailsubject)

    1.get_pidWay函数:

      输入file_name,返回文件路径、文件名、文件Pid的列表,用split函数和ept_list字符串使返回的列表变成[[文件路径,文件名,Pid],[文件路径,文件名,Pid]]这样的二维数组;

    2.open_file函数:

      使用win32api模块,类似在cmd中执行程序,打开指定的可执行文件;

    3.mailsend函数:

      发送邮件,我用的qq的smtp模块,在qq邮箱的设置里可以开启smtp端口;

      username_send发送邮件的邮箱地址,password是开启smtp端口时弹出的字符串;

      username_recv收邮件的邮箱地址;

      在内网要采用smtplib.SMTP_SSL(mailserver)连接(其中mailserver= ‘smtp.qq.com'),使用smtp = smtplib.SMTP(mailserver,port=465)方式会报错:smtplib.SMTPServerDisconnected: Connection unexpectedly closed

    4.主函数:

      file_path :放置可执行文件的目录;

      fileName:可执行文件的文件名;

      for循环来判断file_path是否在我们 get_pidWay函数返回的列表中,从而知道可执行文件是否正常运行;

      如果没有运行,pos = 0,则运行文件、发送邮件。

    以上就是python使用Windows的wmic命令监控文件运行状况,如有异常发送邮件报警的详细内容,更多关于python wmic命令监控文件运行状况的资料请关注脚本之家其它相关文章!

    您可能感兴趣的文章:
    • python实现自动化办公邮件合并功能
    • Python利用机器学习算法实现垃圾邮件的识别
    • Python 发送SMTP邮件的简单教程
    • Python一行代码实现自动发邮件功能
    • Python基础详解之邮件处理
    • Python 调用API发送邮件
    • Python基于SMTP发送邮件的方法
    • python基于SMTP发送QQ邮件
    • python 自动监控最新邮件并读取的操作
    • python实现发送邮件
    • python 实现网易邮箱邮件阅读和删除的辅助小脚本
    • python如何发送带有附件、正文为HTML的邮件
    • 用python监控服务器的cpu,磁盘空间,内存,超过邮件报警
    • python邮件中附加文字、html、图片、附件实现方法
    • Python用20行代码实现完整邮件功能
    上一篇:如何用Django处理gzip数据流
    下一篇:python实现按日期归档文件
  • 相关文章
  • 

    © 2016-2020 巨人网络通讯 版权所有

    《增值电信业务经营许可证》 苏ICP备15040257号-8

    python使用Windows的wmic命令监控文件运行状况,如有异常发送邮件报警 python,使用,Windows,的,wmic,