I'm trying to figure out how to monitor other windows services; print spooler, Hyper-V Virtual Machine Manager.
Does anyone have any ideas?
Thanks
Try check_winservice via NRPE:
check_winservice --service Spooler --state !running --critical 1
or check_wmic directly from the Nagwin server:
check_wmic --host x.x.x.x --user 'abra@nuke.local' --password '!!"#%&' --alias "Service where (Name='Spooler' And State!='Running')" --property Name --count --format "Spooler status." --crit 1
Thanks for that, I'll check on friday when I'm next in the office
Try check_winservice via NRPE:
check_winservice --service Spooler --state !running --critical 1
or check_wmic directly from the Nagwin server:
check_wmic --host x.x.x.x --user 'abra@nuke.local' --password '!!"#%&' --alias "Service where (Name='Spooler' And State!='Running')" --property Name --count --format "Spooler status." --crit 1
Thanks for that, I'll check on friday when I'm next in the office