Skip to Main Content
Patch My PC Ideas & Feedback

A community where customers and the community can provide feedback to make a better product for everyone! For more details on how we prioritize requests, please see:

60 VOTE
Status SUBMITTED
Created by Pawel Jarosz
Created on Jan 7, 2022

Consider adding Zabbix Agent / Zabbix Agent 2 to the catalog.

Zabbix is used to monitor endpoints, services and many more. It is really good enterprise monitoring solution https://www.zabbix.com/

  • Attach files
  • Guest
    May 16, 2025

    Pls add it ASAP, really need it :)

  • David
    Mar 11, 2025

    Another vote Zabbix Agent 2 to be added.

    During my testing, only the initial installation requires parameters to be passed to the MSI for unattended installations. Following the initial installation, upgrades can be completed with the most basic of msiexec.exe commands. e.g.

    msiexec.exe /i <path to msi>


    Note: Some parameters in the configuration file that are not set by the installer (such as UnsafeUserParameters) will be lost during the upgrade process.

  • IT creation
    Aug 30, 2024

    We'd also like to have the Zabbix agent added to the catalogue.

  • Guest
    Aug 26, 2023

    When reinstalling Zabbix Agent 2, I've noticed that I've had to uninstall and delete the service first. Below is the script I use to install. I'm also specifying a custom .conf and .psk file. The .conf file is specified during the msiexec install, and the .psk file is referenced within the .conf file.


    :: Stop "Zabbix Agent 2"
    sc.exe stop "Zabbix Agent 2"

    :: Run powershell script to uninstall zabbix

    C:\Windows\System32\WindowsPowerShell\v1.0\powershell.exe -ExecutionPolicy ByPass -File .\uninstall-zabbix_agent2.ps1

    :: Delete "Zabbix Agent 2"

    sc.exe delete "Zabbix Agent 2"

    :: Delete below reg key too, before reinstalling "Zabbix Agent 2"

    reg.exe delete "HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\EventLog\Application\Zabbix Agent 2" /f


    move /y "C:\Program Files\Zabbix Agent 2\zabbix_agent2.conf" "C:\Program Files\Zabbix Agent 2\zabbix_agent2.conf.backup"

    move /y "C:\Program Files\Zabbix Agent 2\psk.key" "C:\Program Files\Zabbix Agent 2\psk.key.backup"

    mkdir "C:\Program Files\Zabbix Agent 2\"

    copy /y zabbix_agent2_psk.conf "C:\Program Files\Zabbix Agent 2\zabbix_agent2_psk.conf"

    copy /y psk.key "C:\Program Files\Zabbix Agent 2\psk.key"


    start /wait "Install Zabbix Agent" msiexec.exe /i "zabbix_agent2-6.4.4-windows-amd64-openssl.msi" /qn /norestart SERVER=zabbix.example.com SERVERACTIVE=zabbix.example.com CONF="C:\Program Files\Zabbix Agent 2\zabbix_agent2_psk.conf"



    ## "uninstall-zabbix_agent2.ps1" file contents below

    # Search for MSI, then uninstall it.

    $MyAppToUninstall = Get-WmiObject -Class Win32_Product | Where-Object{$_.Name -like "*Zabbix*"}

    $MyAppToUninstall.Uninstall()



  • IT creation
    Aug 2, 2023

    This would be more than awsome!

  • Scott P
    May 24, 2022

    https://www.zabbix.com/download_agents

    Installers are MSI files.

  • +37