Hi, Im trying to customize zabbix msi installer for automation.. I need to install the host on around 500 machines and want to do it as automated as possible..
with kb I saw we can customize the following:
I have a few requirements so im wondering if its possible at all..
1. I want to be able for the server to auto register using their FQDN. is it possible with the msi?
2. is it possible to re-package the msi with a custom config and to just deploy it? that way I can do it via some rmm and wont need to specify arguments when I run it.
3. I dont understand what does the "^" at the end of every paramter is. do I need to add it when I specify a value? same for server active. why is the :: there?
with kb I saw we can customize the following:
Code:
msiexec /l*v log.txt /i zabbix_agent-6.4.0-x86.msi /qn^ LOGTYPE=file^ LOGFILE="%INSTALLFOLDER%\zabbix_agentd.log"^ SERVER=192.168.6.76^ LISTENPORT=12345^ SERVERACTIVE=::1^ HOSTNAME=myHost^ TLSCONNECT=psk^ TLSACCEPT=psk^ TLSPSKIDENTITY=MyPSKID^ TLSPSKFILE="%INSTALLFOLDER%\mykey.psk"^ TLSCAFILE="c:\temp\f.txt1"^ TLSCRLFILE="c:\temp\f.txt2"^ TLSSERVERCERTISSUER="My CA"^ TLSSERVERCERTSUBJECT="My Cert"^ TLSCERTFILE="c:\temp\f.txt5"^ TLSKEYFILE="c:\temp\f.txt6"^ ENABLEPATH=1^ INSTALLFOLDER="%INSTALLFOLDER%"^ SKIP=fw^ ALLOWDENYKEY="DenyKey=vfs.file.contents[/etc/passwd]"
I have a few requirements so im wondering if its possible at all..
1. I want to be able for the server to auto register using their FQDN. is it possible with the msi?
2. is it possible to re-package the msi with a custom config and to just deploy it? that way I can do it via some rmm and wont need to specify arguments when I run it.
3. I dont understand what does the "^" at the end of every paramter is. do I need to add it when I specify a value? same for server active. why is the :: there?
Unfortunately...
Comment