Client Management Suite

 View Only
Expand all | Collapse all

Can Altiris 7.1 monitor specific system services and send alerts if they're not running?

  • 1.  Can Altiris 7.1 monitor specific system services and send alerts if they're not running?

    Posted Sep 20, 2012 01:38 PM

    Can Altiris 7.1 monitor specific system services and send alerts if they're not running on a node?



  • 2.  RE: Can Altiris 7.1 monitor specific system services and send alerts if they're not running?

    Posted Sep 20, 2012 07:50 PM

    Yes. This report will return all systems that will return all services in an enviornment where a state is "stopped". You could then add one or more specific services in place of the wildcard and add this to an automation policy:

     

    Select vc.Name

    ,vc.Domain

    ,vc.[IP Address]

    ,vc.[User]

    ,sw.Name AS [Service]

    ,sw.State

    From vComputer vc

    JOIN Inv_OS_Service_Windows sw

    ON vc.Guid = sw._ResourceGuid

    WHERE sw.Name LIKE '%' AND sw.State = 'Stopped'



  • 3.  RE: Can Altiris 7.1 monitor specific system services and send alerts if they're not running?

    Posted Sep 21, 2012 03:51 PM

    Thanks! We will give this a try.



  • 4.  RE: Can Altiris 7.1 monitor specific system services and send alerts if they're not running?

    Posted Sep 25, 2012 12:00 PM

    Be sure to mark my response as a solution if it does work, thanks!