wix3.6

Start application after installation using WiX/Burn

ぐ巨炮叔叔 提交于 2019-12-03 09:55:09
I'm aware of similar questions in WiX MSI, but I'm having issues starting an application within a bootstrapper EXE file created with Burn after the installation. My full bundle is below. If it makes any difference to the scenario, the bootstrapper is started in passive mode, so the user shouldn't need to press anything. <?xml version="1.0" encoding="UTF-8"?> <Wix xmlns="http://schemas.microsoft.com/wix/2006/wi" xmlns:bal="http://schemas.microsoft.com/wix/BalExtension" xmlns:util="http://schemas.microsoft.com/wix/UtilExtension"> <Bundle Name="My Company AutoUpdater" Version="1.0.11"

WiX Burn - Determine what items are already installed

馋奶兔 提交于 2019-12-03 07:01:45
I've a burn installation whereby the user can select which of three options to install - each one directly relates to one of three MsiPackages in a chain, such as : <Chain> <MsiPackage SourceFile="..\ProductA\bin\Release\ProductA.msi" InstallCondition="chkProductA" /> <MsiPackage SourceFile="..\ProductB\bin\Release\ProductB.msi" InstallCondition="chkProductA" /> <MsiPackage SourceFile="..\ProductC\bin\Release\ProductC.msi" InstallCondition="chkProductC" /> </Chain> All fine. However, when I run the msi next time, I only want to re-install/update the items that were selected originally - ie if

How to add a UI to a WiX 3 installer?

半城伤御伤魂 提交于 2019-12-03 04:08:02
问题 I've tried <UIRef Id="WixUI_Minimal" /> , but I get "Unresolved reference to symbol WixUI:WixUIMinimal". What am I doing wrong? 回答1: The wixui extension is no longer wixui.wixlib. It was rolled into the WixUIExtension. If you are on the command line, add -ext WixUIExtension to the call to light.exe. If you have a WiX project in Visual Studio, add a reference to "WixUIExtension" by right clicking on "References" in the Solution Explorer. See the WiXUI Dialog Sets page for WIX3. 回答2: If you use

How can I add an optional UI to WiX toolset

只愿长相守 提交于 2019-12-02 23:47:00
问题 I have already made a quiet installer (without the need to click any buttons but some progress bar is shown while installation is in progress) for a project deployment. This time I wish to add an optional graphical user interface. By default, the installer should just run without clicking anything, when a parameter is given, let's say, the msiexec parameter: /qf , the installer would pop up an interface that can be interacted with. I've already added the required UI dll to the project

How to insert a Groupbox and image in setup dialog in wix Installer

时光怂恿深爱的人放手 提交于 2019-12-02 21:37:24
问题 Am developing an installer for my application using wix installer.installer. Wix is really new to me . In that installer am having a custom dialog and where i have kept check boxes inside it. <Control Id="InstallWORD" Type="CheckBox" X="20" Y="200" Width="200" Height="17" Property="INSTALLWORD" CheckBoxValue="1" Text="Install Word Plug-In?" /> the above is the code i used for keeping check box. But now i need to insert a small picture near the checkbox (ie) similar like this how to make it

How can I uninstall a MSI but not the Bundle itself using WiX MBA?

心不动则不痛 提交于 2019-12-02 21:11:50
问题 My Requirements: I have few MSI files which need to be installed. User can select which one he wants to install/uninstall. For this purpose I have used WiX bootstrapper where I have used WPF UI to list down all the MSI and few buttons to Intstall/Upgrade/Uninstall Till now I am able to install selected MSI using InstallCondition but could not manage the uninstall. If I uninstall any of the MSI, the Bundle is also getting uninstalled. Hence it is not showing in the Add/Remove Program. So I

How to add a UI to a WiX 3 installer?

匆匆过客 提交于 2019-12-02 17:27:05
I've tried <UIRef Id="WixUI_Minimal" /> , but I get "Unresolved reference to symbol WixUI:WixUIMinimal". What am I doing wrong? Adam Tegen The wixui extension is no longer wixui.wixlib. It was rolled into the WixUIExtension. If you are on the command line, add -ext WixUIExtension to the call to light.exe. If you have a WiX project in Visual Studio, add a reference to "WixUIExtension" by right clicking on "References" in the Solution Explorer . See the WiXUI Dialog Sets page for WIX3 . Remus Rusanu If you use the .wixproj directly via MSBuild, without Visual Studio, the required modification is

How to insert a Groupbox and image in setup dialog in wix Installer

拜拜、爱过 提交于 2019-12-02 10:14:22
Am developing an installer for my application using wix installer.installer. Wix is really new to me . In that installer am having a custom dialog and where i have kept check boxes inside it. <Control Id="InstallWORD" Type="CheckBox" X="20" Y="200" Width="200" Height="17" Property="INSTALLWORD" CheckBoxValue="1" Text="Install Word Plug-In?" /> the above is the code i used for keeping check box. But now i need to insert a small picture near the checkbox (ie) similar like this how to make it possible in wix installer?? Thanks . Need to add a Binary element to the file: <Binary Id="MainImage"

How can I uninstall a MSI but not the Bundle itself using WiX MBA?

主宰稳场 提交于 2019-12-02 08:47:23
My Requirements: I have few MSI files which need to be installed. User can select which one he wants to install/uninstall. For this purpose I have used WiX bootstrapper where I have used WPF UI to list down all the MSI and few buttons to Intstall/Upgrade/Uninstall Till now I am able to install selected MSI using InstallCondition but could not manage the uninstall. If I uninstall any of the MSI, the Bundle is also getting uninstalled. Hence it is not showing in the Add/Remove Program. So I would like to know if there is any way to allow uninstall of individual MSI but not the Bundle itself? I'm

Wix: how to uninstall previously installed application that is installed using different installer

点点圈 提交于 2019-12-02 07:25:59
Suppose that you have an installer (not a wix installer) that you downloaded from somewhere. How can you know UpgradeCode of that installer so that you can fill it in in the UpgradeCode section in the new installer that you prepare? Can I learn it from registry somehow? So the question is basically, how to know the UpgradeCode of a program that is installed in the computer. Actually my problem is that my product has been installed with another installer and I am now trying to move it to wix installer. However, I can't find upgrade code in previous installer and I want to find it from installed