wix3.6

Specify the INSTALLLOCATION of packages in WiX inside the Burn managed bootstrapper

拟墨画扇 提交于 2019-11-28 08:41:50
I have a WiX 3.6 bundle (using Burn ) and managed bootstrapper that install several MSI packages. Some of the packages install to a common location ( C:\program files\MyApp ). I want to let the user choose the install location inside the managed bootstrapper application ( C# WPF , especially because the application is large to install; about 1 GB). How can I specify the INSTALLLOCATION for each MSI packages inside my bundle? Bob Arnson Use an MsiProperty child for each MsiPackage to specify INSTALLLOCATION=[BurnVariable]. Then use Engine.StringVariables to set BurnVariable. For example, in

WIX database deployment, installation

我是研究僧i 提交于 2019-11-28 03:21:24
During my setup I give an option to use "windows authentication" OR "server authetication". Everything works fine and db gets installed as long as I do "server authentication" and provide db userId and password. What do I need to do in order install db using "windows authentication" (in wix)? thanks My product.wxs file: <Product Id="*" Name="MySetup2" Language="1033" Version="1.0.0.0" Manufacturer="Hewlett-Packard Company" UpgradeCode="bf1da750-c2fe-4026-9d2b-9d291a61a8b5"> <Package InstallerVersion="200" Compressed="yes" InstallScope="perMachine" /> <Binary Id="success_bmp" SourceFile="$(sys

Custom WiX Burn bootstrapper user interface?

非 Y 不嫁゛ 提交于 2019-11-28 02:54:04
I'm creating an installation package with WiX 3.6 primarily so I can take advantage of the Burn bootstrapping features. So far I have several MSI packages bundled together that will be installed with the built-in bootstrapper application ( WixStandardBootstrapperApplication.RtfLicense ). I have read that Burn allows the default bootstrapper application to be replaced by specifying a custom UX.dll , but I haven't yet been able to locate any resources that describes how the custom ux.dll is constructed (that is, how it integrates with the Burn engine, what technologies do I use, what interfaces

WIX Burn Uninstallation?

蹲街弑〆低调 提交于 2019-11-28 00:29:03
问题 I have a WIX_bundle (V1.0.0.0) which installs 4 third party MSI's of the version (5.0.0.0). Now the new version of my third party MSI's got updated (6.0.0.0). I created a new version of the WIX_Bundle with (v2.0.0.0) and both the WIX bundles have the same upgrade code. What I want to happen is that the new version of the WIX_Bundle should uninstall the previous version (v1.0.0.0 along with the 4 MSI's) and install the new version (v2.0.0.0 with new 4 MSI's). But when I try to install the WIX

How to include prerequisites with msi/Setup.exe in WIX

白昼怎懂夜的黑 提交于 2019-11-27 08:47:42
I'm trying to combine my package in a single setup EXE file and upload it to the Internet. I have created a Microsoft bootstrapper that contains Setup.exe with project MSI output, and pre-requisite .NET Framework 2.0, Windows Installer 3.1 , Visual C++ 2005 redistributables, and Microsoft ReportViewer . I have created a setup project using Visual Studio 2008 . Now I'm trying to create a single compressed setup using WiX 3.6. I have installed it in Visual Studio 2008. I have attached the setup.exe and MSI file using following commands. <ExePackage SourceFile ="setup.exe" Compressed ="yes"/>

Custom WiX Burn bootstrapper user interface?

时间秒杀一切 提交于 2019-11-26 23:52:19
问题 I'm creating an installation package with WiX 3.6 primarily so I can take advantage of the Burn bootstrapping features. So far I have several MSI packages bundled together that will be installed with the built-in bootstrapper application ( WixStandardBootstrapperApplication.RtfLicense ). I have read that Burn allows the default bootstrapper application to be replaced by specifying a custom UX.dll , but I haven't yet been able to locate any resources that describes how the custom ux.dll is

Pass parameters from bootstrapper to msi bundle package

那年仲夏 提交于 2019-11-26 16:49:39
问题 I'm using VS2010 and WiX 3.6 to create MSI packages and bundle them into Bootstrapper setup. Here's my Boostrapper code. <?xml version="1.0" encoding="UTF-8"?> <Wix xmlns="http://schemas.microsoft.com/wix/2006/wi"> <Bundle Name="" Version="" Manufacturer="" UpgradeCode=""> <BootstrapperApplicationRef Id="WixStandardBootstrapperApplication.RtfLicense" /> <Chain> <MsiPackage SourceFile="Package1.msi"> <MsiProperty Name="PARAM1" Value="[PARAM1]" /> <MsiProperty Name="PARAM2" Value="[PARAM2]" />

How to include prerequisites with msi/Setup.exe in WIX

与世无争的帅哥 提交于 2019-11-26 14:17:52
问题 I'm trying to combine my package in a single setup EXE file and upload it to the Internet. I have created a Microsoft bootstrapper that contains Setup.exe with project MSI output, and pre-requisite .NET Framework 2.0, Windows Installer 3.1 , Visual C++ 2005 redistributables, and Microsoft ReportViewer. I have created a setup project using Visual Studio 2008. Now I'm trying to create a single compressed setup using WiX 3.6. I have installed it in Visual Studio 2008. I have attached the setup