<winConfig>
<!-- exe creation properties -->
<headerType>gui</headerType>
<companyName>${organizationName}</companyName>
<fileVersion>1.0.0.0</fileVersion>
<txtFileVersion>${version}</txtFileVersion>
<productVersion>1.0.0.0</productVersion>
<txtProductVersion>${version}</txtProductVersion>
<fileDescription>${description}</fileDescription>
<copyright>${organizationName}</copyright>
<productName>${name}</productName>
<internalName>${name}</internalName>
<originalFilename>${name}.exe</originalFilename>
<!-- installer generation properties -->
<disableDirPage>true|false</disableDirPage>
<disableProgramGroupPage>true|false</disableProgramGroupPage>
<disableFinishedPage>true|false</disableFinishedPage>
<createDesktopIconTask>true|false</createDesktopIconTask>
<!-- enables/disables installers generation -->
<generateSetup>true|false</generateSetup>
<generateMsi>true|false</generateMsi>
</winConfig>
Property | Mandatory | Default value | Description |
---|---|---|---|
generateSetup |
❌ | true |
Generates Setup installer. |
generateMsi |
❌ | true |
Generates MSI installer. |
Property | Mandatory | Default value | Description |
---|---|---|---|
headerType |
❌ | "gui" |
EXE header type: console or gui . |
companyName |
❌ | ${organizationName} |
EXE company name. |
fileVersion |
❌ | "1.0.0.0" |
EXE file version. |
txtFileVersion |
❌ | ${version} |
EXE txt file version. |
productVersion |
❌ | "1.0.0.0" |
EXE product version. |
txtProductVersion |
❌ | ${version} |
EXE txt product version. |
fileDescription |
❌ | ${description} |
EXE file description. |
copyright |
❌ | ${organizationName} |
EXE copyright. |
productName |
❌ | ${name} |
EXE product name. |
internalName |
❌ | ${name} |
EXE internal name. |
originalFilename |
❌ | ${name}.exe |
EXE original filename. |
trademark |
❌ | null |
EXE trademark. |
language |
❌ | null |
EXE language. |
Property | Mandatory | Default value | Description |
---|---|---|---|
disableDirPage |
❌ | true |
If this is set to yes , Setup will not show the Select Destination Location wizard page. |
disableProgramGroupPage |
❌ | true |
If this is set to yes , Setup will not show the Select Start Menu Folder wizard page. |
disableFinishedPage |
❌ | true |
If this is set to yes , Setup will not show the Setup Completed wizard page. |
createDesktopIconTask |
❌ | true |
If this is set to yes , Setup will not ask for desktop icon creation. |