Comments
-
We have currently (this is ONLY 1 customer we host servers for, more are coming) about 700 application monitors rolled out, it's a real pain to find a specific one, we definitely need this!
-
Yes you can run the script with the USER administrator, but that does not mean the script have administrator ELEVATION, there is a little difference regarding what permissions you have there. Take a look at this little script: $currentPrincipal = New-Object…
-
#bumpsqaud
-
I completely agree with you that disabling UAC is a very bad idea and I have not actually done it in a production environment, it was in a test environment for the purpose of seeing if it was possible to get my code working "by any means necessary".
-
yes this is a possible workaround to the issue by running the code remotely from the Orion polling engine, however there are multiple instances where remote code execution is either not possible (fx: Powershell remoting [WinRM] is blocked by a firewall for security reasons) or simply just very impractical to resolve a…
-
I have also seen this issue on some Linux servers and even limiting the script in it's entirety to this: #!/bin/sh echo "Message: Test" echo "Statistic: 0" exit 0 Still gives the same error message...
-
Hi Alex, I have not been able to fint a build-in method to monitor SWAP space, so what we did was utilizing a Linux/Unix script monitor through APM to do the job for us, and from my experience it works just fine! In our environment we have set the thresholds to Warning 80% and Critical 90%, but that is something you can…