1<?xml version="1.0"?> 2<Wix xmlns="http://schemas.microsoft.com/wix/2006/wi"> 3 <Fragment> 4 <PackageGroup Id="doc"> 5 <MsiPackage Id="doc_AllUsers" 6 SourceFile="doc.msi" 7 Compressed="$(var.CompressMSI)" 8 DownloadUrl="$(var.DownloadUrl)" 9 EnableFeatureSelection="yes" 10 ForcePerMachine="yes" 11 InstallCondition="InstallAllUsers and Include_doc and not LauncherOnly"> 12 <MsiProperty Name="TARGETDIR" Value="[TargetDir]" /> 13 <MsiProperty Name="OPTIONALFEATURESREGISTRYKEY" Value="[OptionalFeaturesRegistryKey]" /> 14 </MsiPackage> 15 16 <MsiPackage Id="doc_JustForMe" 17 SourceFile="doc.msi" 18 Compressed="$(var.CompressMSI)" 19 DownloadUrl="$(var.DownloadUrl)" 20 EnableFeatureSelection="yes" 21 ForcePerMachine="no" 22 InstallCondition="not InstallAllUsers and Include_doc and not LauncherOnly"> 23 <MsiProperty Name="TARGETDIR" Value="[TargetDir]" /> 24 <MsiProperty Name="OPTIONALFEATURESREGISTRYKEY" Value="[OptionalFeaturesRegistryKey]" /> 25 </MsiPackage> 26 </PackageGroup> 27 </Fragment> 28</Wix>