I am using the standard (EulaHyperlink) Burn installer, but added an option the the "Install" page like this:
<Page Name="Install">
<Text X="150" Y="15" Width="-11" Height="100" FontId="2" DisablePrefix="yes">#(loc.WillInstall)</Text>
<Hypertext Name="EulaHyperlink" X="150" Y="-60" Width="-11" Height="17" TabStop="no" FontId="3" HideWhenDisabled="yes">#(loc.InstallLicenseLinkText)</Hypertext>
<Checkbox Name="InstallXfemilyCheckbox" X="150" Y="-70" Width="246" Height="17" TabStop="yes" FontId="3" HideWhenDisabled="yes">Veraltete Programme auch installieren</Checkbox>
<Button Name="InstallButton" X="-101" Y="-11" Width="85" Height="23" TabStop="yes" FontId="0">#(loc.InstallInstallButton)</Button>
<Button Name="WelcomeCancelButton" X="-11" Y="-11" Width="85" Height="23" TabStop="yes" FontId="0">#(loc.InstallCloseButton)</Button>
How do i pass the"checked" or "Not checked" property of that checkbox to the msi?
I do know i can pass properties like this (from the bundle):
<MsiProperty Name="NAME-IN-MSI" Value="Value-Seen-In-MSI"/>
But what is "Value-Seen-In-MSI" in this case? How do i reference the value of the checkbox?