Alert for automatic services not started
Alert for automatic services not started
Is there a way (maybe with WMI?) to monitor if all services set to automatic are started? That would be handy when not needing to monitor every service individually.
Sure. Such example listed in the manual.Is there a way (maybe with WMI?) to monitor if all services set to automatic are started? That would be handy when not needing to monitor every service individually.
===================
The query: SELECT Name FROM Win32_Service WHERE Started=0 AND StartMode='Auto' shows all services which have not started and have the start mode configured to "Automatic".
===================
Set "Alert if row count is > than 0" option.
PS Please use "whish list" forum when you need some option that is not available in our software.
Regards
Alex
Hi Alex,
thank you so much for the fast and helpful response, I am presales but am now convinced that HostMonitor is worth the investment and will be buying the Enterprise version at the end of trial period.
thank you so much for the fast and helpful response, I am presales but am now convinced that HostMonitor is worth the investment and will be buying the Enterprise version at the end of trial period.
KS-Soft wrote:All due respect but last time I was chastised for not using Wish List and this time for using it... you need a forum for people to ask questions when they don't know if it is a feature or notPS Please use "whish list" forum when you need some option that is not available in our software.
Not sure I understand the question. Are you asking about SQL query that you are using for ODBC logging or you are talking about WQL query used for WMI test?
If we are talking about WQL then you may easily add some conditions to the query. E.g.
SELECT Name FROM Win32_Service WHERE (Started=0) AND (StartMode='Auto') AND (NAME<>'SysmonLog')
http://msdn.microsoft.com/en-us/library ... S.85).aspx
Regards
Alex
If we are talking about WQL then you may easily add some conditions to the query. E.g.
SELECT Name FROM Win32_Service WHERE (Started=0) AND (StartMode='Auto') AND (NAME<>'SysmonLog')
http://msdn.microsoft.com/en-us/library ... S.85).aspx
Regards
Alex
Yes my apologies, you are correct. I should have said WQL (Subset of SQL for WMI by MS definition). Thanks that will do it and was pretty much what I had guessed it would be, appreciate the help!
Last edited by meppyman on Thu Sep 10, 2009 4:21 pm, edited 1 time in total.