Guest kenzigg@gmail.com Posted August 27, 2007 Posted August 27, 2007 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 Anthony Posted August 27, 2007 Posted August 27, 2007 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 August 27, 2007 Posted August 27, 2007 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. >> > >
Recommended Posts