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?
There are examples in the module author’s documentation
http://timgolden.me.uk/python...