Search found 1 match

by brst07
Mon Jun 29, 2015 4:18 am
Forum: Open Source Nagios Projects
Topic: Exit code problem with check_mk
Replies: 1
Views: 1039

Exit code problem with check_mk

Hi, I'm using check_mk to send check result back to nagios, the powershell script I use is something like this : try{ $ie = New-Object -com internetexplorer.application $ie.navigate($url) while($ie.ReadyState -ne 4) {start-sleep -m 100} $ie.visible = $false $isError = $ie.LocationName.CompareTo(&quo...