source: nscp/helpers/installers/installer/properties.wxs @ 822454f

0.4.00.4.10.4.2
Last change on this file since 822454f was c88cf98, checked in by Michael Medin <michael@…>, 14 months ago
  • Fixed a lot of issues with the installer
  • Added so the installer can generate a config file for you
  • Fixed so installer uses the correct path for password and allowed hosts
  • Added sample python WMI script to list all classes in all namespaces
  • Fixed so if python scripts does not expose init and shutdown they will not be called
  • Added new option --simple to CheckWMI wmi commands to return a simple list without formatting.
  • Property mode set to 100644
File size: 2.1 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://${exe-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        <Property Id="CONFIGURATION_TYPE">ini://${shared-path}/nsclient.ini</Property>
33   -->
34        <Property Id="CONFIGURATION_TYPE">ini://${exe-path}/nsclient.ini</Property>
35        <Property Id="INSTALL_SAMPLE_CONFIG">1</Property>
36
37        <!-- CONFIGURE THE INSTALLER -->
38        <Property Id="ALLOW_CONFIGURATION">1</Property>
39        <Property Id="MAIN_CONFIGURATION_FILE">nsclient.ini</Property>
40        <Property Id="CUSTOM_CONFIGURATION_FILE">nsclient.ini</Property>
41        <WixVariable Id="WixUIBannerBmp" Value="Bitmaps\bannrbmp.bmp" />
42        <WixVariable Id="WixUIDialogBmp" Value="Bitmaps\dlgbmp.bmp" />
43
44        <!-- CONFIGURE THE PROGRAM -->
45        <Property Id="HELP_LINK">http://nsclient.org/nscp/</Property>
46        <Property Id="SERVICE_NAME">nscp</Property>
47
48</Include>
Note: See TracBrowser for help on using the repository browser.