I think there is a package for SQL Server Express for the VS 2005 bootstrapper. I am not sure how to specify it in an MSBuild file, but you may be able to figure that out by creating a dummy setup in VS 2005 and specifying it as a dependency and then looking at the project file.
You can also create custom packages [1] for use with the VS 2005 bootstrapper using this tool [2]. So you could use it to create a package for ITechLogger. [1] http://msdn2.microsoft.com/en-us/library/aa730839(vs.80).aspx [2] http://blogs.msdn.com/misampso/archive/2004/07/08/177822.aspx -- Bill Arnette www.starwitness.com -----Original Message----- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of jcafaro10 Sent: Monday, July 30, 2007 11:46 AM To: wix-users@lists.sourceforge.net Subject: [WiX-users] bootstrapper? I know that to install .NET I need to use a bootstrapper so I made a .proj file and put this in it, but I need to add other things to the bootstrapper that won't install from the msi like sql server desktop engine and itechlogger but I'm not sure how to do that. <Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> <ItemGroup> <BootstrapperFile Include="Microsoft.Net.Framework.2.0"> <ProductName>Microsoft .NET Framework 2.0</ProductName> </BootstrapperFile> </ItemGroup> <Target Name="Bootstrapper"> <GenerateBootstrapper ApplicationFile="WixProject1.msi" ApplicationName="Wix Sample" BootstrapperItems="@(BootstrapperFile)" OutputPath=".\bin\Debug" ComponentsLocation="HomeSite" Culture="en" /> </Target> </Project> -- View this message in context: http://www.nabble.com/bootstrapper--tf4171003.html#a11866122 Sent from the wix-users mailing list archive at Nabble.com. ------------------------------------------------------------------------ - This SF.net email is sponsored by: Splunk Inc. Still grepping through log files to find problems? Stop. Now Search log events and configuration files using AJAX and a browser. Download your FREE copy of Splunk now >> http://get.splunk.com/ _______________________________________________ WiX-users mailing list WiX-users@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/wix-users ------------------------------------------------------------------------- This SF.net email is sponsored by: Splunk Inc. Still grepping through log files to find problems? Stop. Now Search log events and configuration files using AJAX and a browser. Download your FREE copy of Splunk now >> http://get.splunk.com/ _______________________________________________ WiX-users mailing list WiX-users@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/wix-users