The Windows Installer XML (WiX) is a toolset that builds Windows installation packages from XML source code. The toolset supports a command line environment that developers may integrate into their build processes to build MSI and MSM setup packages.

learn more… | top users | synonyms

0
votes
1answer
62 views

Recursivly opening wix bootstrapper

I'm using Wix 3.7's GenerateBootstrapper to generate bootstrappers that I've used in a VS deployment project. My Bundle.wxs is currently a chain with a single item, referencing my MSI. ...
2
votes
1answer
68 views

Custom Bootstrapper created using wix3.6 is not unistalling the msi

I'm installing my msi package (my.msi) from custom managed bootstrapper created using wix3.6 burn, the bootstrapper first installs a few prerequisite packages and then installs my.msi. The ...
0
votes
0answers
40 views

How to make exe keep on installing sliently after reboot system in wix?

I make a bootstrapper exe installer by wix v3.8,and the code as follows: <?xml version="1.0" encoding="UTF-8"?> <Wix xmlns="http://schemas.microsoft.com/wix/2006/wi" ...
1
vote
1answer
44 views

Disable features during silent installation

I have an installation that contains about 17 features. When running in UI mode user can disable features. I am using standard Mondo UI. I want to allow silent installation - meaning, user can ...
0
votes
1answer
54 views

Wix: how to forcefully kill a process/task?

I need to forcefully kill a process that is running in the background before attempting to delete any files, when running an Uninstall from an MSI created with Wix. The main application consist of a ...
0
votes
1answer
104 views

Cannot add reference to WixUIExtension.dll, WixUtilExtension.dll and WixNetFxExtension.dll from VS 2008

I am using Wix 3.7 with VS 2008 and I am trying to add a reference to few WiX dlls so that i can work with UI in my installation. however, I get the following error for each of the following files ...
0
votes
2answers
33 views

Dynamically assigning name to shortcut at run time in WIX

I want to assign different names to a shortcut based on user input. Is this feasible using the WiX toolset? I have tried assigning value of property to Name attribute of Shortcut element but it does ...
0
votes
1answer
45 views

How to create a wix DirectoryCombo element that only shows network shares?

The wix DirectoryCombo element has the attributes Remote and Fixed. By setting the Remote attribute to no, network shares are removed from the drop down list created by this element. Likewise, setting ...
0
votes
1answer
43 views

Setting summary info in MST using WIX

The MST created using wix does not have updated summary information stream values. //The temp msi (copy of original msi) has updated summary info values Database d2 = new Database(tempmsiPath, ...
0
votes
1answer
39 views

How does uninstall process work in windows?

When I'm uninstalling a program from control panel how does it know what components and features are installed on the machine? If I have the .msi file I can use ORCA to take a look inside windows ...
0
votes
2answers
37 views

Windows installer database physical location

Where does Windows installer store information about installed programs and components? Is it a file or registry values or something else?
0
votes
1answer
25 views

wix toolset - expected values for ManagedRuntimeVersion / ManagedPipelineMode

I am trying to create an MSI using the WiX toolset. I have a couple questions: In the WebAppPool documentry there are two Properties: ManagedRuntimeVersion and ManagedPipelineMode. What are the ...
0
votes
1answer
35 views

Change default directory in wix

How do I change the default installation directory (such as D:/ or E:/) in a WiX installer where the components have auto generated guid?
0
votes
2answers
94 views

Wix: Write register entries under HKCU\Software\Classes\Wow6432Node

I have a super simple installer to test if a installer can write register entries under HKCU\Software\Classes\Wow6432Node (the msi is target x86 and I'm testing it on a Win7 x64 machine). The problem ...
0
votes
1answer
59 views

WIX MSI customaction not running when deployed using Group Policy

I'm using WIX to create an MSI which has a custom action to install a clickonce application. I want to deploy the MSI via GPO. The custom action runs fine when I just double click to run the msi, but ...
0
votes
1answer
32 views

Transition from visual studio to wix installer

I have visual studio installer installs everything in Programfiles. I have done transition and create new WIX installer. Wix installer alone works fine but when I try to upgrade my old version I get ...
1
vote
1answer
27 views

WiX installer and redistribution of libstdc++6.dll from MinGW

I am building a MSI installer with WiX for redistributing my MinGW64 application. This requires to ship MinGW dlls with the executable. The libstdc6.dll file is not versionned. What is the cleanest ...
1
vote
1answer
20 views

wix generated bootstrapper is not a valid NT application

We generated with WiX 3.7 a bootstrapper exe, and tried it on XP, Win7 and it works fine. But on an NT (4.0) machine we get "... is not a valid NT application" error when starting the exe. Is thre a ...
2
votes
1answer
61 views

Wix 3.6 bootstrapper to just launch msi

I am working with WIX 3.6, it has some great features to create managed bootstrapper application. I have managed to create a WPF ui for that. But, I dont want to create and handle all the events for ...
2
votes
1answer
58 views

Can you include a generated file to a WiX project without adding it as an existing file

We use HEAT to build a file for our web project installer. I want to know if there is a way that I can have the file included in the compilation, but not included in the project. The reason I need ...
0
votes
2answers
44 views

WiX Installer Spawn an Executable

My questions is simply this, I have a WiX installer .msi that I want to be able to, after successful installation, an executable that runs another installation. Now the reason I need to do this is ...
2
votes
1answer
250 views

Including .NET Installer in Wix Bundle not detecting if already installed

I'm on WiX 3.7, and I can't get the simple bundle element to work, as it doesn't bring across the Net FX installer package, or embed it in the setup.exe . I've resorted to creatingmy own Package for ...
1
vote
1answer
23 views

In wix repairing a setup throws an error

To repair an uninstall condition: <Condition Message="True">(LAUNCHFROMEXE = "True")</Condition> This condition throws an install error. But use below condition: <Condition ...
1
vote
0answers
38 views

Wix Patch Generation issues

I am currently struggling to build a working patch for our product using WiX 3.7. We are currently at the development stage with our product and I want to validate the process for building patches ...
0
votes
1answer
55 views

ICE03: String overflow (greater than length permitted in column); Table: CustomAction

I am getting an ICE03: String overflow warning for the following code: <CustomAction Id="CustomActionID" Return="check" Property="SomeProperty" Value="VERY LONG ...
1
vote
1answer
147 views

Burn: Run Managed Bootstrapper where Dot Net Framework 4 is not installed

I'm a newbie to Burn and learning to develop Managed Bootstrapper Application (MBA) along with Bundle package. As MBA require Dot Net Framework 4.x, we would need it to be installed on the target OS ...
0
votes
1answer
47 views

How to make the bootstrapper installer show UI when uninstall by Add/Remove?

How to make the installer can popup UI or dialog when unistalling by Add/Remove? Right now the installer that is created by the Wix v3.8 bootstrapper only has one confirmation dialog to remove. How ...
0
votes
0answers
37 views

IIS configuration in WiX

Is it possible to configure IIS using WiX? If it is then how do I find out which ASP.NET and IIS features (for example, add MIME types, add application string, add connection string, etc.) can be ...
1
vote
1answer
87 views

Wix: Feature Condition on Property set by Custom Action

In my WIX setup package I have a feature that contains merge module and must be installed conditionally. The condition should be evaluated using property set by custom action. Here's how this looks in ...
0
votes
0answers
58 views

wix XmlConfig: is it possible to remove all child elements within a parent node

In using wix, it's come up a few times that I'd like to completely replace all the child elements of a parent, but without the child elements being necessarily known. So far I haven't found a way to ...
1
vote
1answer
60 views

Issue with wix installer: jenkins auto-build

I have 2 products A and B as part of one of our projects...for which we use a wix installer...the installer code is written in C# using visual studio 2008 and we've had no issues with building or ...
2
votes
1answer
76 views

How to make a WiX burn bundle that upgrade a “Lite” version of my product

I have two SKUs of my product. Both are using Burn as a bootstrapper. I have authored the MSIs in such a way that the Pro version will upgrade and replace the Lite version. But once I've wrapped them ...
2
votes
2answers
100 views

creating language selection dialog using WiX

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 ...
2
votes
1answer
60 views

Detect SQL Server 2008 R2 from WIX

SQL Server 2008 R2 is one of my installer prerequisites. I know we need to check the registry entry using RegistrySearch to detect the SQL Server. I have searched through web, but I am totally ...
1
vote
1answer
62 views

What causes a 1723 DLL not found error in a WIX installer

I'm working with a WIX installer and keep getting this error message: WIX Error 1723. There is a problem with this Windows Installer package. A DLL required for this install to complete could ...
1
vote
1answer
36 views

How do you determine if a WiX bundle installer is quiet or interactive?

There two problems that I shoud solved. First,how do you determine if a WiX bundle installer is quiet or interactive? Second,how does a exe installer that maked by bundle of wix v3.8 can keep a slient ...
0
votes
0answers
22 views

How to create ui for bundle on uninstall?

The exe installer that maked by bundle of wix v3.8 should be closed or restarted browsers before uninstall finished. How do I do?Thanks!
3
votes
1answer
64 views

Managed WiX Bootstrapper packages

I have chained multiple Msi/exec packages in my Bundle.wxs. In my managed Bootstrapper code, I would like to get the parameters (such as DisplayName, Vital, etc) of the current package that is being ...
0
votes
2answers
73 views

Prevent services from losing settings on major upgrade in WiX

I'm trying to prevent my services from losing their settings (credentials and other options) on major upgrades in my WiX installer. I followed the advice here, and I'm trying to use ...
1
vote
1answer
62 views

Wix burn does not show multiple entries in ARP

I use Wix 3.7's burn to install prereq's (Windows Installer 4.5, .NET 3.5, SQL Server 2008 R2 and Sync Framework 2.1) prior to the installation of my two product MSI's. Even though all of the ...
1
vote
1answer
49 views

Wix check if .net 2.0 is installed without condition the setup

i have a wix project. I want insert in it a check for .net 2.0 that if there isn't in the machine generates a warning and not an error. In that mode the user can continue with the installation and ...
2
votes
1answer
114 views

WiX unresolved reference to symbol media 1 in section fragment

I am trying to build my WiX Project in Visual Studio 2010, but everytime I build, I receive the following error messages: Unresolved reference to symbol 'Media1' in section 'Fragment:' ...
1
vote
1answer
47 views

Multiple Instance command in wix

I am trying to install multiple instaces and I want to do it in one go. Is this possible? I am now using command prompt with below command. I followed the following link ...
0
votes
1answer
72 views

WiX bootstrapper: Uninstall packages in a chain

<ExePackage Id="PackageID1" DisplayName="xxx" Compressed="yes" SourceFile="..\xxx\MyExe.exe" Vital="yes" InstallCommand="parameters to the exe" ...
1
vote
1answer
34 views

Edit control doesn't create property in WiX

I have a dialog with an Edit control and a Property set to it. When I advance to the next dialog and it calls my custom action (from PushButton Publish), I can't access the Property that should have ...
1
vote
1answer
28 views

WiX - Not to remove file already deployed

I've got Application, which (in version 1) is shipping some configuration File. After deploying version 1, there was an Plugin for this application, which has overwritten the configuration file (and ...
1
vote
1answer
160 views

Setup created by WIX Bootstrapper is not started

I am newbie for Bootstrapper. i tried to create a setup file which is intended to first run the dotnet framework setup file and only then the MyApp.exe. After finishing the project i got the final ...
-1
votes
1answer
125 views

Wix 3.7 Burn - how to do a custom splash screen with dynamic information

I have Wix Burn Custom installer using ManagedBootstrapperApplicationHost. What I want to do is, have a splash screen, with Version No. Now I don't want to change splash screen image everytime i ...
1
vote
0answers
68 views

Side-By-Side Configuration and Wix Installer

I'm working on WiX installer for a C++ VC9 x64 application which is dependent on Microsoft Visual C++ 2008 SP1 Redistributable Package (x64) ...
1
vote
1answer
63 views

Wix installer puts DLLs into the GAC and the program folder

I've found that by adding KeyPath="yes" and Assembly=".net" to a DLL component in my Wix XML file, that after I build the installer, and run it, it does indeed install the DLLs I've specified with ...

1 2 3 4 5 70