Hi all, I am trying to hide the options button on my bundle install as the install folder is fixed and cannot be changed. I am having trouble getting the SuppressOptionUI="yes" to work.
I am using WiX 3.7 and here is my bundle.wxs from my VS2010 solution. Any help would be greatly appreciated. <?xml version="1.0" encoding="UTF-8"?> <Wix xmlns="http://schemas.microsoft.com/wix/2006/wi"> <Bundle Name="Document Converters" Version="$(var.Version)" Manufacturer="OmPrompt" UpgradeCode="e2e24e5c-5fef-4c16-9b5d-469b67b269a7" Condition="((VersionNT >= v5.1) AND (ServicePackLevel >= 3)) OR ((VersionNT >= v5.2) AND (ServicePackLevel >= 2)) OR (VersionNT >= v6.0)"> <BootstrapperApplicationRef Id="WixStandardBootstrapperApplication.HyperlinkLicense" > <WixStandardBootstrapperApplication SuppressOptionsUI="yes" /> </BootstrapperApplicationRef> <WixVariable Id="WixStdbaLogo" Value="Resource\logo.png" /> <WixVariable Id="WixStdbaLicenseUrl" Value="" /> <Variable Name="InstallFolder" Type="string" Value="[ProgramFilesFolder]Omprompt\Document Converters" /> <Variable Name="LaunchTarget" Value="[InstallFolder]\ConverterController.exe"/> <Chain> <PackageGroupRef Id="NetFx40Redist" /> <RollbackBoundary /> <MsiPackage Id="WIXConverterInstaller" Compressed="yes" SourceFile="$(var.WIXConverterInstaller.TargetPath)" Vital="yes"> </MsiPackage> </Chain> </Bundle> </Wix> Thanks in advance, Dave Moss ------------------------------------------------------------------------------ This SF.net email is sponsored by Windows: Build for Windows Store. http://p.sf.net/sfu/windows-dev2dev _______________________________________________ WiX-users mailing list WiX-users@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/wix-users