I am trying to build a bootstraper application with WiX 3.8 that will install IIS Express 8 and sql server 2012. I saw the link below but they arent using a bundle and the answer is only for parts of sql 2012 that I dont really need. All of the "tutorials" i have found seem extremely outdated - based on old versions of wix. Does anyone have any suggestions? This is as far as I have gotten. I also cant seem to find anyway to install IIS or SQL Server or LocalDB silently with an answer file or something similar. The end goal is to provide no UI outside of wix for these installs.
<?xml version="1.0" encoding="UTF-8"?>
<Wix xmlns="http://schemas.microsoft.com/wix/2006/wi">
<Bundle Name="Bootstrapper1" Version="1.0.0.0" Manufacturer="" UpgradeCode="668b68ed-5274-4413-984d-72959e8e211a">
<BootstrapperApplicationRef Id="WixStandardBootstrapperApplication.RtfLicense" />
<Chain>
<MsiPackage
Name="IIS Express 8"
Cache="no"
Compressed="yes"
Permanent="yes"
Vital="yes"
DisplayInternalUI="yes"
SourceFile="F:\iisexpress_8_0_RTM_x64_en-US.msi" />
<ExePackage
Name="SQL Server Express 2012"
Cache="no"
Compressed="yes"
Permanent="yes"
Vital="yes"
SourceFile="F:\SQLEXPR_x64_ENU.exe" />
<MsiPackage
Name="SQL LocalDB"
Cache="no"
Compressed="yes"
Permanent="yes"
Vital="yes"
DisplayInternalUI="yes"
SourceFile="F:\SQLLocalDB.msi" />
</Chain>
</Bundle>
</Wix>