source: nscp/helpers/installers/installer/properties.wxs @ fb8241a

0.4.00.4.10.4.2
Last change on this file since fb8241a was b7d17f8, checked in by Michael Medin <michael@…>, 2 years ago

0.4.x: Major update with a lot of fixes and what not.
Now NSCA is working with old config file as well as a brand new http settings store and many many other fixes.

  • Property mode set to 100644
File size: 2.0 KB
Line 
1<Include>
2        <!-- CONFIGURE APPLICATION INFORMATION -->
3        <Property Id="ARPCOMMENTS">NSClient++ is a monitoring Agent for amongst other systems Nagios</Property>
4        <Property Id="ARPCONTACT">michael@medin.name</Property>
5        <Property Id="ARPHELPLINK">http://nsclient.org</Property>
6        <Property Id="ARPURLINFOABOUT">http://nsclient.org</Property>
7        <Property Id="ARPURLUPDATEINFO">http://nsclient.org</Property>
8        <Property Id="ARPHELPTELEPHONE">http://nsclient.org</Property>
9        <Property Id="ARPPRODUCTICON">nscp.exe</Property>
10
11        <!-- CONFIGURE DEFAULT VALUES (what will happen if missing from config) -->
12        <!--
13        <Property Id="CONF_CHECKS_DEFAULT">0</Property>
14        <Property Id="CONF_NSCLIENT_DEFAULT">0</Property>
15        <Property Id="CONF_NRPE_DEFAULT">0</Property>
16        <Property Id="CONF_NSCA_DEFAULT">0</Property>
17        <Property Id="CONF_WMI_DEFAULT">0</Property>
18        <Property Id="ALLOWED_HOSTS_DEFAULT"></Property>
19        <Property Id="NSCLIENT_PWD_DEFAULT"></Property>
20   -->
21        <Property Id="CONFIGURATION_TYPE_DEFAULT">ini://${shared-path}/nsclient.ini</Property>
22
23        <!-- CONFIGURE INITAL VALUES IN CONFIG UI -->
24        <!--
25        <Property Id="CONF_CHECKS">0</Property>
26        <Property Id="CONF_NSCLIENT">0</Property>
27        <Property Id="CONF_NRPE">0</Property>
28        <Property Id="CONF_NSCA">0</Property>
29        <Property Id="CONF_WMI">0</Property>
30        <Property Id="ALLOWED_HOSTS"></Property>
31        <Property Id="NSCLIENT_PWD"></Property>
32   -->
33        <Property Id="CONFIGURATION_TYPE">ini://${shared-path}/nsclient.ini</Property>
34
35        <!-- CONFIGURE THE INSTALLER -->
36        <Property Id="ALLOW_CONFIGURATION">1</Property>
37        <Property Id="MAIN_CONFIGURATION_FILE">nsclient.ini</Property>
38        <Property Id="CUSTOM_CONFIGURATION_FILE">nsclient.ini</Property>
39        <WixVariable Id="WixUIBannerBmp" Value="Bitmaps\bannrbmp.bmp" />
40        <WixVariable Id="WixUIDialogBmp" Value="Bitmaps\dlgbmp.bmp" />
41
42        <!-- CONFIGURE THE PROGRAM -->
43        <Property Id="HELP_LINK">http://nsclient.org/nscp/</Property>
44        <Property Id="SERVICE_NAME">nscp</Property>
45
46</Include>
Note: See TracBrowser for help on using the repository browser.