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

121
votes
10answers
44k 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 ...
53
votes
3answers
39k 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 RemoveFile and RemoveFolder options in WiX, but these are not robust enough ...
41
votes
8answers
11k views

Free software for windows installers: NSIS vs. WiX? [closed]

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 ...
41
votes
1answer
7k 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"> ...
39
votes
7answers
6k 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 Visual Studio and have decided to look at WiX. What resources would you recommend to learn and reference? (Note - ...
39
votes
3answers
9k 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 ...
37
votes
4answers
11k 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 ...
37
votes
5answers
13k 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 ...
28
votes
5answers
23k views

Removing files when uninstalling WiX

When uninstalling my application, 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 ...
25
votes
6answers
13k views

GUI for Dialog-design for WiX [closed]

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 ...
24
votes
3answers
7k 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?
22
votes
3answers
7k 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 ...
22
votes
2answers
4k views

Wix: one file per component or several files per component?

Should I wrap all the files I want to install in individual components? What is the advantage of putting several files in one component?
22
votes
1answer
2k views

Wix: single MSI instead of msi + cab

My Wix project creates install.msi and cab1.cab. How can I have it bundle everything into the msi? I will likely use 7-zip SFX to work around this but I have seen other apps with only a single msi.
22
votes
3answers
5k 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 ...
20
votes
2answers
10k views

Custom WIX Burn Bootstrapper user interface?

I'm creating an installation package with WiX 3.6 primarily so I can take advantage of the Burn bootstrapping features. So far I have several MSI packages bundled together that will be installed with ...
19
votes
2answers
6k 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 ...
19
votes
4answers
14k 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 ...
19
votes
7answers
8k 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?
19
votes
7answers
3k views

WiX 3.0 throws error 217, while being executed by continuous integration

This is the error that is thrown by our automated build suite at Windows 2008, while running ICEs (after migrating from WiX 2.0 to Wix 3.0): LGHT0217: Error executing ICE action 'ICE01'. The most ...
19
votes
2answers
9k views

How to include Wix Fragments created by Heat

I have the following fragment <?xml version="1.0" encoding="utf-8"?> <Wix xmlns="http://schemas.microsoft.com/wix/2006/wi"> <Fragment> <ComponentGroup Id="Doc"> ...
18
votes
5answers
14k 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 ...
18
votes
5answers
12k 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 ...
18
votes
3answers
6k 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 ...
17
votes
5answers
9k 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 ...
17
votes
3answers
4k 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 ...
17
votes
2answers
5k 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 ...
17
votes
3answers
8k 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 ...
16
votes
3answers
11k views

How do you register a Win32 COM DLL file in WiX 3?

I found an example on registering DLLs, Registering an Assembly for COM Interop in a MSI file with the Windows Installer XML toolset., and WiX complains about the "AssemblyRegisterComInterop" ...
16
votes
3answers
8k 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 ...
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. ...
15
votes
5answers
6k 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 ...
15
votes
3answers
9k 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
3answers
9k 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" ...
14
votes
2answers
936 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 ...
14
votes
4answers
5k 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 ...
14
votes
1answer
4k 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 ...
14
votes
3answers
5k 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 ...
13
votes
2answers
3k views

Installers: WIX or Inno Setup?

I'm comparing these two tools. The impression I have is: Inno Setup does not produce an MSI, but can do everything WIX can do WIX does produce an MSI, but has a steep learning curve Do you agree ...
13
votes
3answers
6k 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 ...
13
votes
3answers
6k 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 ...
13
votes
2answers
2k 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 ...
12
votes
2answers
2k views

What are limitations of WiX and WiX Toolset?

I have been unsuccessfully trying to find an article or post listing functional limitations of WiX (Windows Installer XML)/WiX Toolset. After using WiX for a couple of weeks, I can think of at least ...
12
votes
5answers
5k 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 ...
12
votes
1answer
673 views

In WiX, is it possible to update the status text when executing custom actions?

When I'm running (multiple) lengthy custom actions, can I update the GUI's status text with some info on the progress?
12
votes
3answers
3k views

Installer capabilities, WIX vs InstallShield Express

Programmers that actually promote their products to production need an installer. (pre-emptive "programming related" justificaton.) For deploying a new suite of internal corporate apps and services, ...
12
votes
2answers
7k 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, ...
11
votes
3answers
5k 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?
11
votes
1answer
5k views

What is the WiX equivilent of Environment.SpecialFolder.ApplicationData from .NET?

I need to install a file into the Environment.SpecialFolder.ApplicationData folder, which differs between XP and Vista. Is there a built in way to reference the correct folder in WiX or will I have ...
11
votes
2answers
6k views

How to create desktop shortcut for all users in WIX

I am developping a MSI installer by using WIX, I can create shortcut on desktop for only one user. Now what shall I do to make a shortcut for all users on the machine? Please advise. Thank you. ...

1 2 3 4 5 68