-
Notifications
You must be signed in to change notification settings - Fork 12
/
build.cmd
18 lines (16 loc) · 1.13 KB
/
build.cmd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
:: Zabbix Agent MSI Installer Build Script
:: Author: Ryan Armstrong <[email protected]>
::
:: This script will build the x86 and x64 MSI packages for the
:: custom Zabbix agent defined in "Zabbix Agent MSI Installer.wxs"
::
:: Requires WiX Toolset v3.8
set WIXBIN=C:\Program Files (x86)\WiX Toolset v3.8\bin
:: Build x64 package
"%WIXBIN%\candle.exe" -dPlatform=x64 -arch x64 -ext "%WIXBIN%\WixUtilExtension.dll" -ext "%WIXBIN%\WixUIExtension.dll" -out "Zabbix Agent MSI Installer.wixobj" "Zabbix Agent MSI Installer.wxs"
"%WIXBIN%\light.exe" -ext "%WIXBIN%\WixUtilExtension.dll" -ext "%WIXBIN%\WixUIExtension.dll" -spdb -out "zabbix-agent.x64.msi" "Zabbix Agent MSI Installer.wixobj"
erase "Zabbix Agent MSI Installer.wixobj"
:: Build x86 package
"%WIXBIN%\candle.exe" -dPlatform=x86 -arch x86 -ext "%WIXBIN%\WixUtilExtension.dll" -ext "%WIXBIN%\WixUIExtension.dll" -out "Zabbix Agent MSI Installer.wixobj" "Zabbix Agent MSI Installer.wxs"
"%WIXBIN%\light.exe" -ext "%WIXBIN%\WixUtilExtension.dll" -ext "%WIXBIN%\WixUIExtension.dll" -spdb -out "zabbix-agent.x86.msi" "Zabbix Agent MSI Installer.wixobj"
erase "Zabbix Agent MSI Installer.wixobj"