Jump to content

Looking for a utility


Recommended Posts

Guest kenzigg@gmail.com
Posted

I'm looking for a simple utility to scan a couple hundred servers and

check all of the automatic services and tell me if any didn't start

during the last reboot. Does anyone know of something that can do

this? Thanks.

  • Replies 2
  • Created
  • Last Reply
Guest Anthony
Posted

Re: Looking for a utility

 

You could have a look at Snare,

Anthony,

http://www.airdesk.co.uk/monitoring.aspx

 

 

<kenzigg@gmail.com> wrote in message

news:1188182571.881878.8220@o80g2000hse.googlegroups.com...

> I'm looking for a simple utility to scan a couple hundred servers and

> check all of the automatic services and tell me if any didn't start

> during the last reboot. Does anyone know of something that can do

> this? Thanks.

>

Guest CarlosBrown
Posted

Re: Looking for a utility

 

I use a script..

 

Private Function StopAutomaticServices(sServer)

StopAutomaticServices = ""

Set objWMIService =

GetObject("winmgmts:{impersonationLevel=impersonate}!\\" & sServer &

"\root\cimv2")

 

Set colListOfServices = objWMIService.ExecQuery("Select caption from

Win32_Service where state <> 'Running' and startMode='Auto'")

 

For Each objService in colListOfServices

StopAutomaticServices = StopAutomaticServices & objService.caption

Next

 

Set colListOfServices = Nothing

Set objWMIService = Nothing

End Function

 

If you need more help, please write me.

 

Regards

 

Anthony escribió:

> You could have a look at Snare,

> Anthony,

> http://www.airdesk.co.uk/monitoring.aspx

>

>

> <kenzigg@gmail.com> wrote in message

> news:1188182571.881878.8220@o80g2000hse.googlegroups.com...

>> I'm looking for a simple utility to scan a couple hundred servers and

>> check all of the automatic services and tell me if any didn't start

>> during the last reboot. Does anyone know of something that can do

>> this? Thanks.

>>

>

>


×
×
  • Create New...