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.
202
votes
31answers
56k views
WiX tricks and tips [closed]
We've been using WiX for a while now, and despite the usual gripes about ease of use, it's going reasonably well. What I'm looking for is useful advice regarding:
Setting up a WiX project (layout, ...
8
votes
2answers
992 views
How can I exclude files from harvesting a folder with heat (WiX 3.5)?
I would like to harvest a folder with a lot of files by using heat.exe. But instead of harvesting all files, I would like to exclude specific file extensions like "*.txt" or something like that.
How ...
5
votes
2answers
178 views
WIX: how to change license agreement during installation
I have a requirement where by I need to show the license agreement according to the OS language. The localized license agreements (.rtf) are kept on a server.
I have created a custom action to detect ...
5
votes
1answer
541 views
IIS website physical path becomes blank on wix uninstall
Background: I have a Wix installer where a virtual directory gets created in an existing IIS website. The virtual directory is created (it doesn't exist before the install) but the IIS website should ...
5
votes
1answer
371 views
Wix 3.5 Create Scheduled Task
I've got a couple of projects I'm using Wix 3.5 for, along with Paraffin which is going really well, but I'm stuck trying to figure out how to create a Windows Scheduled Task as part of the ...
5
votes
4answers
1k views
WIX Custom Actions built for .Net Framework 4.0 does not work? Ways to resolve?
We were using WIX 3.5 (Build Number 1811) and built a custom action built using Visual Studio 2008 and with target framework as .Net 3.5. This used to work great, until we built the custom action ...
5
votes
2answers
689 views
How to add net.tcp to the “Enabled protocols” by using a WIX 3.5 project/setup?
We have a few MSI packages (generated by WIX) that install WCF services. Most of these services need net.tcp for their endpoint bindings.
I'd like to make our deployment life easier and automate the ...
4
votes
2answers
64 views
Wix: Is there any wix command to create database user?
Is they any wix command I can use to create database and to also add a user to the database?
If yes, is there any example on how to do this?
4
votes
1answer
70 views
Pass MSBuild variables to linker in Votive
I am attempting to dynamically name the output of my WiX installer project, so that the resulting MSI is MyProject-Version-Configuration.msi (e.g. MyProject-1.2.0.1325-Debug). Since the name of the ...
4
votes
1answer
179 views
WiX custom license file: setup shows links with < >
I created a WiX 3.5 setup with a custom license file by putting this into the .wxs file:
<WixVariable Id="WixUILicenseRtf" Value="License.rtf" />
This works perfectly and the link is ...
4
votes
3answers
125 views
Wix Boolean Property Values Don't Work
I have the following property:
<Property Id="UPDATEDB">1</Property>
A checkbox in the UI bound to that property:
<Control Id="updateDatabase" Type="CheckBox" CheckBoxValue="1" ...
4
votes
3answers
393 views
WIX installer guidance
I am trying to create an installer using WIX which doesnt show the license agreement at the start. But I get the error as below
This is the full Product.wxs file I have at the moment. It compiles ...
4
votes
1answer
86 views
How do I specify the Help Link, Support Link and Update Information in Wix/Votive?
I've authored a few Wix installers but I've noticed that my products, when installed and viewed in Control Panel, Add/Remove Programs, are a little light on metadata compared to some other installs. ...
4
votes
1answer
365 views
Call custom action in WIX on change of value in Combox
Am stuck with combo box and custom action in WIX installer.
I have a combo box(drop down) containing few values. I want to show some text on the screen (unique for each item in dropdown) when the ...
4
votes
1answer
131 views
InstallExecuteSequence in Fragment not included in installer
I have a strange issue that although not critical I'm wondering why it's happening.
After finishing my fairly complex installer I decided to refactor the code and abstract the different tasks into ...
4
votes
1answer
100 views
How do I get a shortname for a folder in WiX for a Windows Installer property?
I am trying to register an out-of-process COM file (.exe) through WiX after extracting the COM registration from regspy.exe, and am running into the problem that the registry key I need to write is:
...
4
votes
2answers
1k views
Wix Interactions with Conditions, Properties & Custom Actions
I am having a problem with a setting the enabled state of a button on a Dialog. The button in question is defined as:
<Control Id="Next" Type="PushButton" X="236" Y="243" Width="56" Height="17" ...
4
votes
2answers
1k views
Silently executing a PowerShell script from WiX Hangs PowerShell
Note: This question is also posted on the WiX Users mailing list.
I am trying to silently execute a PowerShell script from a WiX produced MSI. However, anytime I run the installer PowerShell hangs. ...
4
votes
1answer
477 views
WiX: Mysterious and hard-to-diagnose ICE validation errors on build server build
I'm trying to integrate WiX into my automated build solution using Tfs2010 running on Server 2008 R2. Everything seemed very easy, and then I get this:
light.exe: Error executing ICE action 'ICE01'. ...
4
votes
1answer
2k views
Wix C# Custom Action .Net 4 Error
I am trying to use my first custom action in Wix and I am receiving error 2896: Executing action CustomActionTest failed.
I am using VS 2010, Wix 3.5, 64-bit Windows 7 Ultimate, .NET Framework 4
...
4
votes
1answer
833 views
Burn and Wix - Status Quo and Documentation
Does any body now the status of Burn in the WIX (Windows Installer XML) Project? The Blogs and Websites don't say anything about it since a couple of month...???
In the latest weekly release it is ...
4
votes
1answer
475 views
How to prevent Wix from removing registry entries on uninstall?
<RegistryKey Id="MyServerRegInstallDir" Root="HKLM" Key="Software\MyApp\Server" Action="create">
<RegistryValue Name="InstallDir" Type="string" Value="[INSTALLDIR]" />
...
3
votes
1answer
69 views
Specifying conditional prerequisites in WiX
I'm working on a WiX 3.5 project that installs a Windows service and a WPF client. The service uses SQL Server SMO and SQL Server CE, while the client uses DevExpress libraries. During installation, ...
3
votes
1answer
95 views
Wix Bind Substring or Split
I'm trying to get a Wix installer written that does some TypeLib registration.
I'm already pulling the FileVersion off a registered file elsewhere using
!(bind.FileVersion.#InteropDll)
but I want ...
3
votes
2answers
54 views
How can I give parameters to a WIX setup from the setup's download link
I'm trying to do the following :
Suppose a user with username "annie" is connected to the foo.example.com website
On the website I give a link to download a msi setup (developped with WIX 3.5)
The ...
3
votes
1answer
62 views
Trigger logging from within Wix script
Normally, to enable logging, you'd say msiexec ... /l*v [or any other combination].
You can also enable logging all products via the registry tweak.
Note that these are all outside actions, in a ...
3
votes
3answers
187 views
Running devenve.exe /setup after uninstall in Wix
I am working on an installer (MSI, Wix) for MVVM Light and have an issue. I need to run devenv.exe /setup on install and on uninstall to add/remove templates to the New Project menu. While we nailed ...
3
votes
3answers
265 views
Automatic detection of run-time libraries with WiX
When my file set includes DLLs with one ore more dependencies to the C++ run-time DLLs I need to install the file from VCRedist.exe. This can be difficult, since each DLL is dependent on a specific ...
3
votes
2answers
725 views
Wix x64 platform target
When I create a Wix project and try to build it with the platform set to 'x64', I get errors in my build output like this:
------ Build started: Project: MyProject, Configuration: Release x64 ------
...
3
votes
2answers
278 views
WiX patching not updating files correctly
My "admin-image" style WiX test patches are failing to update the existing installation correctly. When using msiexec /lx, I get the following information related to patching "fi_executable.exe":
MSI ...
3
votes
2answers
384 views
WiX Property: Directory Search: “Could not access network location”
I'm making an installer with the WiX 3.5 toolset, and I've run across a problem:
The installer needs to be able to detect whether another program is present, and if so, add a DLL file in its ...
3
votes
2answers
645 views
WiX - harvest non project assemblies in setup output
I'm using WiX 3.5 in VS 2010, and I've added all of the project assemblies as references in the Setup project (.wixproj), and set the Harvest property to True so that the binaries, content, and ...
3
votes
1answer
371 views
How do I include SQL CE using WiX installer?
So I'm trying to build an installer in Wix 3.5.
My app need SQL CE 3.5 to run. It looks like MS's installer has an easy way to include this, but I'm not sure what I need to do in WiX.
3
votes
2answers
245 views
Create database with bootstrapped SQL Express
I've written an app which bootstraps SQL Express 2008 with a Wix 3.5 installer, then attempts to CREATE DATABASE on first run of the app. The install of SQL Express is thus totally unattended. This ...
3
votes
2answers
499 views
Setting .NET version in IIS application pool using WIX does not work
<!-- Custom action to set the .NET version -->
<CustomAction Id="SetNetVersion_Cmd" Property="SetNetVersion" Execute="immediate" Return="check" Value="$(var.SetNetVersionCmd)" />
...
3
votes
1answer
254 views
WiX project error when opening up solution in Visual Studio
I have a solution with a WiX project in it. Everytime I open it I get an error and then the WiX project is displayed as unavailable.
The error is:
Setup\Setup.wixproj : error : Error HRESULT ...
2
votes
2answers
56 views
Wix: How to get the return status of a custom action and use it as a condition to run certain event/show dialog
May i know how to get the return status of a custom action (that is running a command line) and use it as a condition to run certain event/show dialog? For example, in a dialog, when i click on the ...
2
votes
1answer
29 views
wix UtilExtension strings for zh-CN, ru-ru, fr-fr missing in wix sources
I noticed that UtilExtension localization files (.wxl) are missing for zh-CN, ru-ru, fr-fr locales in the latest wix sources.
Only en-us, de-de, ja-jp are present.
The installer that I am developing ...
2
votes
1answer
51 views
Wix Major Upgrade and Install Context Issues
I have a Wix project that I have set to allow major upgrades. I'm using WixUI_Advanced for a choice between per-user and per-machine installs. When I install and upgrade per-user everything works as ...
2
votes
2answers
83 views
Using Wix how can I deploy one of several web.config files while installing an ASP.net web application
I'm using Wix 3.6 beta from the command line, not as VS projects. I have a web application that is harvested with heat as a directory. This works. I'm using web.config transforms to manage each of the ...
2
votes
1answer
70 views
Wix Install Error 2762 while invoking a CustomAction from dialog
I am a beginner, started learning wix. I want to capture and validate and register user details during the installation process.
I have created a dialog to capture user registration and invoking a ...
2
votes
1answer
194 views
Referencing a WixVariable defined in a WiX Library Project from a WiX Setup Project
I'm trying to configure a WiX setup and library so that the version of one of the files in the library is used as the Product/@Version in the setup.
Background
In a setup with the files defined ...
2
votes
1answer
55 views
WiX not rendering images correctly
I'm trying to write a custom WiX dialog which, as part of its workflow, shows an error image in response to certain conditions. However, WiX appears to be ignoring my dimensions and displaying as it ...
2
votes
1answer
72 views
WIX: How to register an Application to a URL Protocol?
In WiX you can register file types easily:
<ProgId Id="MyApp.File" Description="MyApp File" Icon="MyAppEXE" IconIndex="0">
<Extension Id="ext" ContentType="application/x-myapp-file">
...
2
votes
2answers
72 views
How to have a quiet execution of a file in binary table during the InstallUISequence?
I have a file which is not installed:
<Binary Id="LaunchMyExe" SourceFile="$(var.Project.DependenciesPath)/myProgram.exe" />
And I would like to run it quietly during the InstallUISequence ...
2
votes
1answer
51 views
How to use a file in a custom action without installing it in the InstallUISequence phase?
I would like to run an executable file with a quiet execution custom action during the InstallUISequence phase.
This executable has a text file as a parameter. I don't want that text file to be ...
2
votes
0answers
69 views
How to bootstrap .NET service pack?
I have to build an installer for an .NET application that requires .NET Framework 2.0 SP2. When I add the .NET Framework as found in WiX Tutorial I get the .NET Framework 2.0 without service pack.
...
2
votes
2answers
87 views
How to decouple things in Wix?
I want to install a product with some dll with Wix 3.5.
These dll are determined during the msi installation through a radio buttons group.
I have :
a (fragment) wxs for myDllv1
a (fragment) wxs for ...
2
votes
1answer
78 views
Wix Event Log Not Getting Created
I'm trying to create an Event Log and Event Source at install time using Wix. The install doesn't fail or give any error...but I don't see any Event Log called MyApp getting created.
...
2
votes
1answer
64 views
Conditions within custom actions
I recently separated our company installers in to two features (one enabled and one absent), to allow the user to select both, I've used UI_Mondo GUI to allow selection.
I've managed to get our ...