On
How To add zabbix agent to windows (all windows platform)
·         Download windows agent’s file here


·         Create new folder ‘zabbix’ in drive C:\
·         Copy file inside win32/win64 (depend on your OS) to folder zabbix
·         Create new zabbix_agentd.conf file using notepad save to folder zabbix,write this :


LogFile=C:\zabbix\zabbix_agentd.log
LogFileSize=0
Hostname=changethiswithwinhostname
Server=yourzabbixserverip
DisablePassive=1
DisableActive=0

·         Open command prompt,execute this command

cd /zabbix
C:\zabbix>zabbix_agentd.exe --config c:\zabbix\zabbix_agentd.conf --install

·         Start the service

Open windows services,find Zabbix Agent at the bottom and Start it
It should have been to Automatic start up by default,so no need to change it

·         Make sure zabbix server are open port 10051 to agent’s ip,if not we need to allow it first by adding below rule to zabbix server’s iptables

-A INPUT -s agent-ip -p tcp -m state --state NEW -m tcp --dport 10051 -m comment --comment "windows-host" -j ACCEPT

·         New host need to be enabled via zabbix web interface.

It can be done via Configuration – host – Groups (Discovered hosts) – click status to activate it

·         DONE !