<?xml version="1.0" encoding="US-ASCII"?>
<!-- generated by pInstaller Construction Set(http://www.handx.net/devtool/pInstaller-->
<pInstaller xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="http://www.handx.net/devtool/pInstaller/schema/pInstaller.xsd">
<!-- The previous two lines are required as the first two lines for any pInstaller project.  They establish that this is
an xml document which follows the pInstaller Schema-->
<!--First, we specify the product name -->
<productName>Sample Cool PC App</productName>
<!-- We'll include a licence agreement in this installation.  The user will have to indicate that they
agree before proceeding.  If you don't want to display an agreement or info file, don't include this section.-->
      <preInstallationMessage>
<!-- The title to display at the top of the installation -->
         <title>License Agreement</title>
<!-- The caption to display under the title -->
         <caption>Please read the following license agreement carefully.</caption>
<!-- The name of the file to display (can be a .txt or .rtf file) -->
         <fileName>sampleApp License.rtf</fileName>
<!-- Indicate that you want to display license agreement buttons.  Set this to false if you
are simply displaying a readme file or other information -->
         <showLicenseAgreementRadioButtons>true</showLicenseAgreementRadioButtons>
<!-- close up the section -->
      </preInstallationMessage>
<!-- Set the default installation path.  We specify $PROGFILESDIR, which will resolve to the Program Files directory
of the target PC.  See the schema documentation at
http://www.handx.net/devtool/pInstaller/schema/documentation for a complete list of available variables.-->
<defaultPCInstallationPath>$PROGFILESDIR\Sample App</defaultPCInstallationPath>
<!-- Allow the user to select an alternate installation path -->
<allowUserPathSelection>true</allowUserPathSelection>
<!-- set the general settings for any shortcuts created -->
<shortCutDefaults>
<!-- Allow the user to change the base path for shortcuts -->
      <allowUserShortcutPathPrompt>true</allowUserShortcutPathPrompt>
<!--Set the default shortcut path (note that this will be a subFolder of Start\Programs or the language specific
equivalent -->
      <defaultShortCutPath>handX pInstaller Construction Set Demo</defaultShortCutPath>
<!--Close up the shortcut defaults group -->
</shortCutDefaults>
<!-- Now we'll list our installation files. -->
<!-- First we indicate that we are describing an installation file -->
<installationFile>
<!-- Specify the name of the file -->
      <fileName>sampleApp.exe</fileName>
<!-- For most files, the destination should be $USERINSTALLDIR or $USERINSTALLDIR\subPath.  $USERINSTALLDIR
resolves to the path selected by the user for installation -->      
      <destination>$USERINSTALLDIR</destination>
<!-- We always want the base application to be installed, so we set the filegroup to "0", a specially defined
fileGroup for required files. -->
      <fileGroup>0</fileGroup>
<!-- Now we set the shortcut specific settings -->
      <shortCut>
<!-- A description of the shortcut -->      
            <description>Sample Application</description>
<!-- Close up the shortcut group -->
      </shortCut>
<!-- Close up the installation file -->      
</installationFile>
<!-- Now we move on to our next installation file -->
<installationFile>
<!-- Specify the name of the file -->
      <fileName>sampleApp.hlp</fileName>
<!-- For most files, the destination should be $USERINSTALLDIR or $USERINSTALLDIR\subPath.  $USERINSTALLDIR
resolves to the path selected by the user for installation -->      
      <destination>$USERINSTALLDIR\Help</destination>
<!-- We always want the base application to be installed, so we set the filegroup to "0", a specially defined
fileGroup for required files. -->
      <fileGroup>0</fileGroup>
<!-- Now we set the shortcut specific settings -->
      <shortCut>
<!-- A description of the shortcut -->      
            <description>Sample App Help File</description>
<!-- Close up the shortcut group -->
      </shortCut>
<!-- Close up the installation file -->      
</installationFile>
</pInstaller>
