I spent hours troubleshooting then realised that it was installing all of the addons broke the Zabbix agent 2 service, choosing only MSSQL doesn't brake the service which is all I need anyway.
Its been installed on our test servers but I need to deploy this to over 100 servers so need to...
Search Result
Collapse
26 results in 0.0022 seconds.
Keywords
Members
Tags
-
Install only the MSSQL plugin
-
API Powershell Script (7.2.x and later)
After many frustrating hours searching the internet for working examples of the API using PowerShell, and only finding old versions that no longer work, I’ve made one from scratch: https://github.com/PhoenixC46/PSZabbix
The readme file has all the instructions needed to get up and running with...👍 1 -
Unsupported item key
Hello everybody,
I used system.run and when consulting the Latest data, Key: Unsupported item key ALWAYS appears.
Here's an example:
...Code:system.run["powershell -Command \"Get-CimInstance -ClassName Win32_Processor | Select-Object -ExpandProperty Name\&qu
-
Is it possible to create a trigger for text from script results?
Hello,
I am using a script to pull ACL on the shared folder.
Results:Code:Get-Acl -Path \\share1\folder1\* | where-object { $_.AccessToString -match 'Everyone' }
...Code:Path Owner Access ---- ----- ------ test1 domain\user1 Everyone
-
Macro array for remote script
I created a PowerShell script that collects some file data from a Win 2008 VM.
Something like this:
...Code:param ($ARQS) $DATAATUAL = Get-Date -Hour 0 -Minute 0 -Second 0 $PATH = "C:\FTP\import\*" $FILELIST = Get-ChildItem -Path $PATH -Include $ARQS
Last edited by markfree; 09-07-2022, 14:18. -
Zabbix PowerCli
Hello everyone.
I want to say right away, maybe I'm on the wrong path
And if someone tells me a way how to collect IOPs more correctly. I will be grateful.
I had an idea to collect OIPs metrics from PowerCli.
Wrote a script.
... -
How to handle Multiple Values
Dear Zabbix-Friends,
I am pretty new to Zabbix and I´m sharing this challenge with out:
I created a windows tasks, that I want to monitor. The easiest (for me) would be to issue a Powershell command through a custom item and process the given output. The Powershell-command... -
Using a Powershell script to check on Exchange Online mailboxes size
Hello everyone,
I have recently set up a zabbix server 5.4 with around 200 hosts and 15k checks on a Ubuntu Server 20.04 LTS VM for the infrastructure at the company I currently work at, using a lot of community templates and reading through a lot of these forums, but unfortunately I could... -
Runnig PowerShell script using externalscripts / system.run on Linux.
Hi Everyone,
I am working on running some PowerShell scripts BUT - on linux, pswh works well in general from the command prompt, here is the simply command that check the date:
However when trying to run it as an item I am getting an error:
... -
Zabbix Agent deployment with PowerShell / MSI
i had to install the agent on many computers for a customer. I decided to use a powershell script. Simple filter over e.g. OUs possible
There is still a lot to do, but distributing it already works. It's using the MSI package 5.0.2 for x64
Here it is:
https://...Last edited by dotup.de; 05-08-2020, 16:20. -
Zabbix Agent 4.4.x UserParameter Powershell Errors
Hey there,
first a hello to everybody since I am new to this forum. Secondly: I am trying to run a short powershell command from Zabbix for a Windows Server 2012 R2 Standard host. As far as I know it is powershell v1.0. The command is
<code> UserParameter=backups.db-zip,powershell.exe...Last edited by Canlann; 24-01-2020, 10:07. -
UserParameter with Powershell script not returning a value
We're trying to set up monitoring of a large number of http services on networks only accessible from hosts, not the Zabbix server.
I have a Powershell script which return http status code when querying an URL.
It works exactly as intended when run manually in a command prompt from...Last edited by WishfulThinking; 11-09-2019, 19:14. -
Lentitud en Zabbix Agent (active) SQL Server y PowerShell
Hola.
Estamos detectando un problema a la hora de monitorizar SQL Servers con la plantilla https://github.com/MantasTumenas/Zab...oft-SQL-Server
No sabemos si es un problema de PowerShell o es una mala configuración del agente de Zabbix.
La plantilla hace LLD para bases... -
powershell - zabbix take cpu processes and send in %
i want monitor windows cpu processes in % by zabbix but zabbix item proc.cpu.util[Sqlsvr.exe] is not supported in windows.
so i try to do a script in powershell and executed by zabbix, i don't know if its a good idea, do you have idea ?
my powershell script to take cpu process... -
How to get exit code from powershell script
Hello,
I am new to Zabbix and so far I have not encountered any major problem.
However, I now want to use powershell script to get, for example, the number of sessions of people logged on to a certain server.
The script works great and I get the value that I need, but...