I need to stop and start remote services (2 or 3 services) when a URL-Check goes bad. Is there a possibility to stop and start 2 or 3 services in a special order width HM ?
stop and start remote services in special order
You can set different values for "Start when XX consecutive Bad results occur" parameter of the actions.
But I think more simple create small BAT file like:
--------------
NET STOP W3SVC
NET STOP MSFTPSVC
NET STOP IISADMIN
NET START IISADMIN
NET START MSFTPSVC
NET START W3SVC
--------------
and use "Execute external program" action to restart set of services
Regards
Alex
But I think more simple create small BAT file like:
--------------
NET STOP W3SVC
NET STOP MSFTPSVC
NET STOP IISADMIN
NET START IISADMIN
NET START MSFTPSVC
NET START W3SVC
--------------
and use "Execute external program" action to restart set of services
Regards
Alex