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()
怎麼更改啟動類型以及狀態呢?
模組作者的文檔裡有範例
http://timgolden.me.uk/python...