Description : Ce script VBS liste les services arrétés.
Script :
strComputer = "."
Set objWMIService = GetObject("winmgmts:" & _ "{impersonationLevel=Impersonate}!\\" & strComputer & "\root\cimv2") Set colStoppedServices = objWMIService.ExecQuery _ ("SELECT DisplayName,State FROM Win32_Service WHERE State <> 'Running'")
For Each objService in colStoppedServices Wscript.Echo objService.DisplayName & " = " & objService.State Next
Proposer un script
|
Notre avis :

Votre avis :

Réactions : 0
Votants : 1
Visites : 9129
|