I have created an MSI that uses WixUI_InstallDir option to display the
install path and a license file.  Running the MSI correctly displays the
install path screen and the license screen.

I am now wanting to include this MSI in a bootstrapper project so when can
install some other projects together with this one.  So far I have created
the following Bundle:

<?xml version="1.0" encoding="UTF-8"?>
<Wix xmlns="http://schemas.microsoft.com/wix/2006/wi";
         xmlns:bal="http://schemas.microsoft.com/wix/BalExtension";>


  <Bundle Name="MyInterface"
                   Version="$(var.ShortAssyVersion)"
                   Manufacturer="MyCompany"
                   UpgradeCode="C13F474A-06AA-4C81-AED8-7251CA55B8E8"
                   HelpUrl="http://www.myurl.com";
                   AboutUrl="http://www.myurl.com";
                   HelpTelephone="888 888 8888"
                   IconSourceFile="Resources\my.ico">

         <BootstrapperApplicationRef
Id="WixStandardBootstrapperApplication.RtfLicense" />

         <Chain>
             <MsiPackage Id="MySetup"

SourceFile="$(var.myWiXSetup.TargetPath)"
                                    ForcePerMachine="yes" />
         </Chain>
  </Bundle>
</Wix>


When I run this, the product is correctly installed bu I do not get the
install path and license screens from the MSI.  What do I need to do to get
the MSI screens to display?

I DO NOT want to display the license as part of the EXE, I want it to
display as part of the MSI as there are instances where we will ship just
the MSI and not the EXE.


Brian

If you can't explain it simply, you don't understand it well enough.  -
Albert Einstein
------------------------------------------------------------------------------
Meet PCI DSS 3.0 Compliance Requirements with EventLog Analyzer
Achieve PCI DSS 3.0 Compliant Status with Out-of-the-box PCI DSS Reports
Are you Audit-Ready for PCI DSS 3.0 Compliance? Download White paper
Comply to PCI DSS 3.0 Requirement 10 and 11.5 with EventLog Analyzer
http://pubads.g.doubleclick.net/gampad/clk?id=154622311&iu=/4140/ostg.clktrk
_______________________________________________
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users

Reply via email to