Tagged Questions
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.
195
votes
31answers
52k 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, ...
78
votes
12answers
26k views
How to implement WiX installer upgrade?
At work we use WiX for building installation packages. We want that installation of product X would result in uninstall of the previous version of that product on that machine.
I've read on several ...
33
votes
3answers
25k views
How to add a WIX custom action that happens only on uninstall (via MSI)?
I would like to modify an MSI installer (created through WIX) to delete an entire directory on uninstall.
I understand the there RemoveFile and RemoveFolder options in WIX, but these are not robust ...
31
votes
7answers
3k views
Good resources for learning how to create MSI installers from WiX
I've given up trying to apply lipstick to the pigs of installers that come out of VS and have decided to look at WiX.
What resources would you recommend to learn and reference?
(Note - this is not a ...
27
votes
9answers
7k views
Free software for windows installers: NSIS vs. WiX?
I'm need to choose a software package for installing software. NSIS and WiX seem promising. Which one would you recommend over the other and why?
Feel free to offer something else if you think it's ...
24
votes
5answers
7k views
How to add a whole directory or project output to WiX package
We decided to switch from VS integrated setup to WiX.
However, what we currently do is use projects output files as the input for the setup project. This lets us easily add Application Files to a ...
21
votes
3answers
4k views
WiX Includes vs Fragments
Quite simply, what's the difference between a WiX include (.wxi file) and a WiX fragment (.wxs file)? What are the use cases for each? Which "should" be used and why?
19
votes
4answers
5k views
How do you create an event log source using WiX
I'm creating an installer for a website that uses a custom event log source. I would like our WiX based installer to create that event log source during installation.
Does anyone know the best way to ...
17
votes
1answer
2k views
What is the wix 'KeyPath' attribute?
What is the Wix 'KeyPath' attribute? In particular, how does it apply to the following:
<Component Id="ProgramMenuDir" Guid="BF266F76-192A-493E-B5C7-C54660E61D7D">
...
16
votes
4answers
5k views
Wix create non advertised shortcut for all users / per machine
In WIX, how do you create a non advertised shortcut in the allusers profile? So far I've only been able to accomplish this with advertised shortcuts. I prefer non-advertised shortcuts because you ...
16
votes
6answers
2k views
What method do you use to deploy ASP.Net applications to the wild?
Currently we deploy compiled ASP.Net applications by publishing the web site locally and emailing a zip file to the system administrator with a (usually) lengthy set of instructions for deployment. ...
14
votes
4answers
10k views
How do I pass msiexec properties to a Wix C# custom action
I have an MSI being created with Wxs 3.0. My MSI references a C# custom action, written using the new C# Custom Action project ...
14
votes
4answers
7k views
How do I install an ASP.Net MVC application on IIS 7 using Wix?
For IIS6 I can use the IIS helpers in Wix to install a web application like this:
<iis:WebAppPool
Id="AP_MyApp"
Name="My Application Pool"
Identity="networkService" />
...
14
votes
5answers
4k views
Automated-build version number with WiX, Inno Setup, and VS2008
Basically what I need is an automated way to update the product version number in WiX (3.0 with Votive etc), and then get that version number into an Inno Setup "bootstrapper"
I pretty much have the ...
14
votes
4answers
14k views
Removing files when uninstalling Wix
When uninstalling my app, I'd like to configure the wix setup to remove all the files that were added after the original installation. It seems like the uninstaller removes only the directories and ...
13
votes
6answers
5k views
How can I detect .net 3.5 in WiX?
I'm trying to detect which version .NET is installed using WiX. I've tried:
<Condition Message='This setup requires the .NET Framework 3.5 or higher.'>
<![CDATA[MsiNetAssemblySupport ...
13
votes
5answers
6k views
Set ASP.Net version using WiX
I am creating an installer for an ASP.Net website using WiX. How do you set the ASP.Net version in IIS using WiX?
13
votes
3answers
5k views
How to register file types/extensions with a WiX installer?
I didn't find an explicit answer to this question in the WiX Documentation (or Google, for that matter). Of course I could just write the appropriate registry keys in HKCR, but it makes me feel dirty ...
13
votes
2answers
3k views
Make wix installation set upgrade to same folder
How can I make a major upgrade to an installation set (MSI) built with Wix install into the same folder as the original installation? The installation is correctly detected as an upgrade, but the ...
12
votes
2answers
542 views
Are Visual Studio Setup Projects suitable for complex setups
Are "Visual Studio Setup" Projects suitable for complex setups in different versions?
The application is rather large (> 500.000 lines of code) and is under continuous development. Every 6 to 10 ...
12
votes
2answers
3k views
In WiX files, what does Name=“SourceDir” refer to?
WiX files always seem to include this line:
<Directory Id="TARGETDIR" Name="SourceDir">
What is "SourceDir"? What is it used for? It's not a real directory name. Is it some kind of magical ...
12
votes
3answers
3k views
How can I set the WiX installer version to the curent build version?
I wrote an application and its WiX installer and put it under version control using subversion. When the WiX installer builds I want its version number to be the current build version of the ...
12
votes
3answers
3k views
What alternatives are there to ClickOnce?
I've used ClickOnce a lot over the years but have run up against a lot of it's limitations. What alternatives are there for web deployment?
So far the only one I've been able to turn up is ...
12
votes
3answers
7k views
Wix and .NET Framework (prerequisites)
How can I have my Wix package to download the required .NET Framework when it's not yet installed in the client's machine? I already have the condition to check for the installed .NET version but I'm ...
11
votes
4answers
3k views
WiX: Prevent 32-bit installer from running on 64-bit Windows
Due to user confusion, our app requires separate installers for 32-bit and 64-bit versions of Windows. While the 32-bit installer runs fine on win64, it has the potential to create support headaches ...
11
votes
2answers
2k views
How to convert vdproj file to WiX format?
I need to convert a vdproj file to WiX format so that I can get it building using msbuild. One solution was to call the devenv executable from msbuild and build the vdproj file from there but that's ...
11
votes
5answers
8k views
Using WiX to create an IIS virtual directory
I'd ask this on the WiX mailing list, but it seems to be down.
I have an application which is both a desktop app and a web app which runs locally. I've created a couple of basic WiX installers, but ...
11
votes
3answers
2k views
Integrating Wix with MSBuild
we are looking to automate an MSI generation for a product we are developing. Currently we have MSBuild building out the source to a network location, this is fine for testing but when it comes to ...
11
votes
3answers
4k views
Typelib Generation and Installation with WiX
After asking about what Visual Studio does to register a COM Library, it became clear that VS did two things for COM registration:
Registered the COM Library
Creates and registers a Type Library
...
10
votes
1answer
2k views
How to associate application with existing file types using WiX installer?
related to this: http://stackoverflow.com/questions/138550/how-to-register-file-types-extensions-with-a-wix-installer but not a duplicate.
I need to handle existing file types (.jpg files).
I do not ...
10
votes
5answers
5k views
GUI for Dialog-design for WiX
WiX is great in that there is no GUI, you just write the installer you want it to be. No fiddling with GUI-wizards!
However, drawing GUI is actually one thing I prefer to use a GUI for.
So, is there ...
10
votes
3answers
3k views
WIX will not add HKLM registry setting during Windows 7 install
Good Morning,
I have written a WiX installer that works perfectly with Windows XP but when installing to a Windows 7 box I am running into difficulty with Registry Entries. What I need to do is add a ...
10
votes
3answers
5k views
How to create/Where to get Wix Bootstrapper for Multiple Instances
I'm currently learning how to create msi installers using WiX and it seems I've hit a wall.
All is well when I create an MSI containing everything needed for a single environment.
I have features, ...
10
votes
5answers
4k views
How to generate WiX XML from a .reg file?
Is there a tool to generate WiX XML given a .reg file?
In 2.0, you were supposed to be able to run tallow to generate registry XML:
tallow -r my.reg
For what it's worth, the version of tallow I ...
10
votes
3answers
4k views
How best to define a custom action in WiX?
I have a wix installer and a single custom action (plus undo and rollback) for it which uses a property from the installer. The custom action has to happen after all the files are on the hard disk. It ...
9
votes
2answers
922 views
Wix Open web page when uninstall completes
I'm using Wix3. I need to open a web page when the user uninstalls the product.
Any ideas how it can be done?
Thanks.
9
votes
5answers
4k views
Switching from InstallShield to WiX
I am looking for a replacement for InstallShield. Unfortunately we only have 1 license for InstallShield and it was installed on a developer's machine. I'm considering switching over to WiX, but after ...
9
votes
3answers
6k views
Replicating Visual Studio COM registration with a WiX Installer
Once upon a time, a young, naive engineer thought it would be a good idea to separate out some of the functionality for his app into a COM component, written in C#. Visual studio had all the tools to ...
9
votes
5answers
1k views
Including all dependencies
I'm just starting out with WiX as I need to be able to automate building an MSI on our CI server. Is there anyway to automatically include all the dependencies of a project?
9
votes
3answers
5k views
WIX: How to Select Features From Command Line
This might be a naive question. I have to manually edit a .WXS file to make it support select features from command line.
For example, there are 3 features in .WXS file.
<Feature Id="AllFeature" ...
8
votes
2answers
925 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 ...
8
votes
1answer
4k views
WiX undefined preprocessor variable
I'm starting to use WiX in order to do automated builds to create msi's of my c# projects and am experiencing the error "Undefined preprocessor variable '$(var.MyProject.TargetDir)'"
I am using the ...
8
votes
5answers
2k views
Dynamically create WIX files without having to edit the wix files manually
Suppose you release the next version of your software, you will have to manually update your WIX files to remove obsolete files and add new files, etc.
My use case is as simple as "recursively add ...
8
votes
1answer
4k views
WiX— always overwrite the previous version
I have an installer of an application that needs to install over any existing version, regardless of version number.
Instead, I've got an installer that constantly says that I need to go to ...
8
votes
4answers
11k views
How can I uninstall Win32 assemblies and cleanup WinSxS?
After a lot of trial and error (mostly due to lack of documentation and examples) I have managed to create MSI installers that install custom DLLs to WinSxS as side-by-side assembly. There is only one ...
8
votes
1answer
4k views
How to create a multi-level subfolder in Start menu using Wix
How do I create sub folders (several levels deep) in the Windows Start menu, using Wix? Currently I am able to put my shortcut in the Start menu, but only in a folder immediately under Programs (Start ...
8
votes
3answers
6k views
How do you register a win32 com dll in WiX3?
So I found this example on registering DLLs: http://blogs.msdn.com/robmen/archive/2004/04/28/122491.aspx
and WiX complains about the "AssemblyRegisterComInterop" attribute. I removed that and ...
7
votes
4answers
558 views
7
votes
3answers
2k views
How to do a silent install and uninstall with Wix and MSI?
How can a silent installer that does not display any UI Dialogs to the user and installs, upgrades and uninstalls with default settings be created in Wix?
7
votes
1answer
440 views
What is the best practise to create MSI with some other child MSI as prerequisite?
Currently we are using Innosetup as a bootstrapper to install the MSI prerequisites. It makes bit complex to maintain the setup. I found that burn tool which may help us to resolve this issue by ...