Good resources for learning how to create MSI installers from WiX

Viewed 45040

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 - this is not a which-installer-technology-do-you-use question - it's specific to WiX.)

11 Answers

One of the best ways I found to learn WiX was to take an existing MSI that did something I wanted to do, and used the Dark decompiler to generate a WiX script from it, and then I read that.

I have to add wix-users@lists.wixtoolset.org. That's where everyone hangs out and asks/answers questions as they come up. Just lurking on that mailing list will provide lots of real-time education on the WiX toolset.

Even though it's not only related towards WiX, the book from Apress:

The Definitive guide to Windows Installer By Phil Wilson link

It helped me to understand the installation processes. It's a good book to have when writing installers.

If you understand German, then read the articles in the Entwickler Magazin, edition: 2008-05, 2008-06 and 2009-01.

A follow-up will be published in 2009-02, with more developing stuff (MSI API).

Related