PSZabbix icon indicating copy to clipboard operation
PSZabbix copied to clipboard

PowerShell module for automating Zabbix administration

Results 6 PSZabbix issues
Sort by recently updated
recently updated
newest added

After zabbix 6 update I cannot add computer to a group anymore: PS C:\Windows\system32> Get-ZbxHost mdevweb* hostid host name status ------ ---- ---- ------ 10129 mdevweb1.m.xo mdevweb1.m.xo Enabled 10130 mdevweb2.m.xo...

Added Interface- and Macro-Config.

This PR covers the following changes - add Zabbix v3.4 devcontainer config - prepare 4.4 & 5-lastet devcontainer configs for next iteration - fix serveral issues with param array and...

This branch takes care for compatibility running under PSCore on Linux. Additionally it reintroduces all enhancements done by @dogleft while keeping the rules of the original module (e.g. naming conventions,...

Added maintenance functions (New \ Get \ Remove) Added unit tests for the functions needed immediately and refactored to separate files to simplify debugging and maintenance. Fixed small bugs as...

Update-ZbxHost returns error with zabbix 4.0, with 3.4 works fine. ``` $zbx_addr = "http://192.168.1.100/api_jsonrpc.php" $zbx_login = "zabbix_internal_admin" $zbx_pass = "zabbix_5trong_pass" $zbx_sec_pass = ConvertTo-SecureString $zbx_pass -AsPlainText -Force $zbx_creds = New-Object System.Management.Automation.PSCredential...