Home  >  Q&A  >  body text

How to operate windows system services in Python

def listservices():
    import wmi
    c = wmi.WMI()
    for service in c.Win32_Service():
        #print(service.Caption,service.StartMode,service.State)
        print(service.Caption)     #名称
        print(service.StartMode)   #启动类型
        print(service.State)       #状态
if __name__=='__main__':
    listservices()

How to change the startup type and status?

怪我咯怪我咯2676 days ago744

reply all(1)I'll reply

  • 滿天的星座

    滿天的星座2017-06-22 11:53:20

    There are examples in the module author’s documentation

    http://timgolden.me.uk/python...

    import wmi
    c = wmi.WMI()
    for service in c.Win32_Service(Name="seclogon"):
      result, = service.StopService()
      if result == 0:
        print "Service", service.Name, "stopped"
      else:
        print "Some problem"
      break
    else:
      print "Service not found"

    reply
    0
  • Cancelreply