wix3.6

WiX Burn 3.6 beta - custom UI examples

二次信任 提交于 2019-12-04 17:51:16
问题 Are there any good references/examples for WiX Burn 3.6 custom UI? I googled around, but they are broken pieces of the information. 回答1: The WiX installer itself is a good example and the source is freely available via CodePlex (WiX 3.6 Beta). Check out the WixUX project, which is the bootstrapper for the WiX 3.6 install. Another Stack Overflow question is Custom WIX Burn Bootstrapper user interface? , describing how to get started. Or if you get the latest weekly WiX releases, the project

How can I set recovery-options of a service with WiX?

邮差的信 提交于 2019-12-04 16:16:34
问题 I have following .wxs-file: <?xml version="1.0" encoding="UTF-8"?> <?define ProductVersion="x.x.x.x" ?> <?define UpgradeCode="{**MYGUID**}" ?> <?define Manufacturer="My Company" ?> <?define ProductName="My Product" ?> <?define SkuName="MyProduct" ?> <Wix xmlns="http://schemas.microsoft.com/wix/2006/wi"> <Product Id="*" Name="$(var.ProductName)" Language="1033" Version="$(var.ProductVersion)" Manufacturer="$(var.Manufacturer)" UpgradeCode="$(var.UpgradeCode)"> <Package InstallerVersion="301"

Can we localize WIX msi and bundle using language selection UI at runtime?

自作多情 提交于 2019-12-04 15:07:26
We have an MSI and Bundle created in Wix. I need to localize both of these in such a way that language selection GUI will be popped-up and language can be selected by the user at run time. Would be really appreciated if anybody can help me on this. For MSI, i am working on creating another bootstapper for bringing-up with language selection combobox and invoke the tranfomed MSI with the required transform(using command shell). I am still not sure about the feasibilty of this approach. I am facing issue in creating combo box in customized UI of bootstapper and invoking batch command to run this

WIX radio button group

谁说胖子不能爱 提交于 2019-12-04 13:06:55
问题 I am stuck in doing with WIX radio group button,I want to know Whether i can able to disable text box based on selection of WIX radio group button like mentioned in the image below. And how is it possible to save selection of radio group button value.As i needed the selected radio box value and save in registry. for registry is it possible to assign the 1st text box value based on this condition? <Condition><![CDATA[if (RADIOGROUP=1)<Property Id="RADIOGROUP" Value="[TEXTBOX1]" />]]><

How to add custom action to wix setup project

若如初见. 提交于 2019-12-04 06:27:41
I have 2 projects in my soliution: 1). Custom action class (CustomAction) 2). Wix setup project (TestSetup) There is CustomAction.cs in CustomAction project: using System; using System.Collections.Generic; using System.IO; using System.Linq; using System.Text; using Microsoft.Deployment.WindowsInstaller; namespace CustomAction { public class CustomActions { [CustomAction] public static ActionResult CustomAction1(Session session) { File.Create(@"c:\installed.txt"); return ActionResult.Success; } } } Product.wxs: <?xml version="1.0" encoding="UTF-8"?> <Wix xmlns="http://schemas.microsoft.com/wix

WiX XmlConfig: Purpose for nesting XmlConfig in XmlConfig

岁酱吖の 提交于 2019-12-04 01:24:24
问题 What is the purpose and/or gain (other than increased readability for creating/deleting attributes) to nesting an XmlConfig element in another XmlConfig element? Example of what I'm referring to (I'm using WiX 3.6 ): <util:XmlConfig ...> <util:XmlConfig ... /> </util:XmlConfig> 回答1: The short answer: the only purpose of the option to have nested <util:XmlConfig> elements is to be able to add/remove attributes to/from the newly created elements in a more readable way. So, this is basically

creating language selection dialog using WiX

瘦欲@ 提交于 2019-12-03 17:09:58
I have a created a multilanguage installer using WiX. I am running the installer from command line using command "msiexec /i myinstaller.msi TRANSFORMS=":1041" and it is working fine. Now I have created a language selection dialog using bootstrapper. How can I pass the selected language to my WiX installer to launch as per selected language? I got this idea from following links: Can we localize WIX msi and bundle using language selection UI at runtime? http://wix.tramontana.co.hu/tutorial/transforms/morphing-installers My bundle has <MsiPackage SourceFile="myinstaller.msi" DisplayInternalUI=

patching using purely WIX

◇◆丶佛笑我妖孽 提交于 2019-12-03 16:33:48
I am struggling with creating a patch purely using WIX and I was hoping if someone could guide me in the right direction. I have a few hundred source files and I run heat against them to create a harvest file followed by creating a package using candle and light. I need to change a few configuration files and I create a 2nd package with the changes. Using Torch and pyro I create the .wixmst file and then when trying to create the msp file, pyro complains with the following error. pyro.exe : error PYRO0252 : No valid transforms were provided to attach to the patch. Check to make sure the

How can I set recovery-options of a service with WiX?

倖福魔咒の 提交于 2019-12-03 11:27:37
I have following .wxs-file: <?xml version="1.0" encoding="UTF-8"?> <?define ProductVersion="x.x.x.x" ?> <?define UpgradeCode="{**MYGUID**}" ?> <?define Manufacturer="My Company" ?> <?define ProductName="My Product" ?> <?define SkuName="MyProduct" ?> <Wix xmlns="http://schemas.microsoft.com/wix/2006/wi"> <Product Id="*" Name="$(var.ProductName)" Language="1033" Version="$(var.ProductVersion)" Manufacturer="$(var.Manufacturer)" UpgradeCode="$(var.UpgradeCode)"> <Package InstallerVersion="301" Compressed="yes" InstallPrivileges="elevated" InstallScope="perMachine" Platform="x86" /> <Media Id="1"

WiX Burn 3.6 beta - custom UI examples

纵饮孤独 提交于 2019-12-03 10:45:34
Are there any good references/examples for WiX Burn 3.6 custom UI? I googled around, but they are broken pieces of the information. Bill Campbell The WiX installer itself is a good example and the source is freely available via CodePlex ( WiX 3.6 Beta ). Check out the WixUX project, which is the bootstrapper for the WiX 3.6 install. Another Stack Overflow question is Custom WIX Burn Bootstrapper user interface? , describing how to get started. Or if you get the latest weekly WiX releases , the project has been renamed to WixBA. See src\Setup\WixBA . Andez Yes, they are scattered all over. I am