Classification: Public
show the themefile as well

I presume you want to show a checkbox for java and checkbox for tomcat?

-----Original Message-----
From: vorsichtdiekurve [mailto:mp.mateusz.polan...@gmail.com]
Sent: August-06-14 7:27 AM
To: wix-users@lists.sourceforge.net
Subject: [WiX-users] WiX 3.8 extended bootstrapper

Hi,
my goal is to create a simple bootstrapper with two checkboxes, allowing the 
users to choose whether they want to install two additional software packages.
I'm trying to use Neil Sleightholm's extended bootstrapper functionality.
I've read that it's supported by the wix 3.8 release.
My code is the following:
<?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="Bootstrapper1" Version="1.0.0.0" Manufacturer="..."
UpgradeCode="...">
    <BootstrapperApplicationRef
Id="WixStandardBootstrapperApplication.HyperlinkLicense">
      <Payload SourceFile="Bundle4Theme.xml"/>
      <bal:WixStandardBootstrapperApplication ThemeFile="Bundle4Theme.xml"
LicenseUrl=""/>
    </BootstrapperApplicationRef>
                <Chain>
      <ExePackage Id="Java" Vital="no" Compressed="yes" PerMachine="yes"
SourceFile="jre-7u67-windows-x64.exe" InstallCondition="Java"/>
      <ExePackage Id="Tomcat" Vital="no" Compressed="yes" PerMachine="yes"
SourceFile="apache-tomcat-8.0.9.exe" InstallCondition="Tomcat"/>
      <RollbackBoundary/>
      <MsiPackage Vital="yes" Id="xxx" SourceFile="xxx.msi"
DisplayInternalUI="yes" Compressed="yes"/>
                </Chain>
        </Bundle>
</Wix>
The theme I'm trying to use is one of Neil's (not modified at all at this 
moment). I copied it into the project directory.
The project compiles without any errors nor warnings.
The problem is that when the bootsrapper get's executed, nothing appears.
What am I doing wrong? Is my approach going to work after fixing the issue?
If not, is there any possibility to add this functionality to the bootstrapper 
without getting involved into coding the bootstrapper dlls?
Thank you in advance for any answers.
Mateusz



--
View this message in context: 
http://windows-installer-xml-wix-toolset.687559.n2.nabble.com/WiX-3-8-extended-bootstrapper-tp7596250.html
Sent from the wix-users mailing list archive at Nabble.com.

------------------------------------------------------------------------------
Infragistics Professional
Build stunning WinForms apps today!
Reboot your WinForms applications with our WinForms controls. 
Build a bridge from your legacy apps to the future.
http://pubads.g.doubleclick.net/gampad/clk?id=153845071&iu=/4140/ostg.clktrk
_______________________________________________
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users

 
This message has been marked as Public by Steven Ogilvie on August-06-14 
8:56:13 AM.

The above classification labels were added to the message by TITUS Message 
Classification. 
For more information visit www.titus.com.

------------------------------------------------------------------------------
Infragistics Professional
Build stunning WinForms apps today!
Reboot your WinForms applications with our WinForms controls. 
Build a bridge from your legacy apps to the future.
http://pubads.g.doubleclick.net/gampad/clk?id=153845071&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