Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

What is the best Windows installer maker. I want to buy one. Price doesn't matter. There are some few years old questions, but we have 2011 now.

share|improve this question

closed as not constructive by CharlesB, Matt Wilko, BK., CJM, Jason Sturges Jul 21 '12 at 4:05

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.

8 Answers

up vote 7 down vote accepted

Have you looked at the Windows Installer XML (WiX) toolset? It's free, and although you need to know some XML to use it, it works very well, especially with Visual Studio. The setups don't look funny like the default Visual Studio Setup Project ones do; they look very great and you can do pretty anything with WiX that Windows Installer is capable of.

(I also recommend you download Orca; it's useful to have for testing and such.)

share|improve this answer
1  
+1 -- WiX is really nice, and allows you to do anything accessible from the Windows Installer format. – Billy ONeal Jan 7 '11 at 0:37
Haha yeah, I just saw your comment after writing the same myself! Thanks! :) – Mehrdad Jan 7 '11 at 0:38
My edit? 0_0 – Billy ONeal Jan 7 '11 at 0:39
Er, sorry, I meant your comment (I mixed up "my edit" with "your comment") haha. Typo, changed it. :D – Mehrdad Jan 7 '11 at 0:40
1  
-1. Take one horrible thing like MSI wrap it into another horrible thing like XML. And you will spend many hours trying to figure out how to implement the simplest thing. – alehro Jan 21 '12 at 12:09
show 3 more comments

Having done hard time with Installshield, I'd have to recommend Advanced Installer these days. It's a breath of fresh air if you want a pointy clicky thing. Can handle the simplest of installers right up to feature beasties. The price has been creeping up over the years, but it's an excellent tool.

I really would love to try WIX though. I've been put off by a couple of people, but they were XML haters.

share|improve this answer

NSIS is a really good choice for making many kinds of installers for apps, because of its tiny footprint and huge amount of customizability. A large number of commercial applications out there actually use NSIS, and you'd be hard-pressed to tell (though many still just use the basic look&feel and keep the NSIS footer in there)

The only downside, I'd say, is having to learn its domain-specific scripting language, which looks like php/perl meets BASIC. But once you get over the hump (start with one of the examples) you can get fantastically powerful installers in very little work.

In either case, you can't complain about the price.

share|improve this answer
+1 -- I like WiX better but NSIS is nice too. – Billy ONeal Jan 7 '11 at 0:42

I've just answered in this post that the best tool to create a windows installer package is Advanced Installer.

share|improve this answer
1  
I switched from IzPack to Advanced Installer. Its a great product and I got my install working in about 10 minutes. I deployed my swing App with the $299 professional version on all windows platforms with little trouble. Highly recommended – DataMania Jul 27 '11 at 23:32
1  
This weekend I have checked out Wix, Advanced Installer, Inno Setup and NSIS. I have VS 2008 at the moment. My requirements are: Russian Language support, quick Digital signing, multiple projects in one MSI build, quick to learn, suitable for corporate deployment and free or a reasonable price. To meet all my requirements I have chosen Advanced Installer Pro version. The other concern I have is that the NSIS and Inno Setup projects seem to have slowed down to a halt. Also I have spent a year developing a great product and why do I need to spend more time learning proprietory scripts? – peteringermany Jun 3 '12 at 8:31

Even though, another year has come but Inno Setup still be one of the best. It's up to date too.

share|improve this answer
+100. I was struggling with WiX for a week. With Inno I just runned the Wizard from InnoIDE and I got all the features by default. – alehro Jan 21 '12 at 12:03

Check out installshield. It's a beast, expensive and sometimes hard to use but does everything under the sun you'd need.

If money were an issue I'd second the Wix recommendation.

share|improve this answer
Seriously - someone with an agenda against installshield or have you got a real reason to down vote it? If so add it to the discussion to help improve this answer's quality. – Michael Shimmins Sep 22 '11 at 23:01
+1. As far as breadth, Installshield (Flexera) offers some competitive features that aren't available in Windows Installer development platforms. For example, Try and Die/Try and Buy, Virtual Appliances. I also agree that like any software certain features of Installshield are 'hard to use', but they have gotten better over the years. – jJack Apr 2 at 4:54

The best things in life are free: Wix

This is an open source toolset from Microsoft that allows you to build installers from a set of xml files specifying what to do. There is even a Visual Studio plugin (votive) that allows you to build from within VS - you can simply add an installer project to your solution.

Wix is pretty good at holding your hand in order to make sure that you don't fall into most of the traps that Windows Installer creates for you.

Works very well and I will never again touch Installshield...

share|improve this answer

The best installer is only good as the installation developer using it. If money is truly no object, don't forget this point. Find the right person and he will put together the right solution with the right tools and technologies. Personally, I leverage the best from InstallShield, WiX and some home brewed automation.

share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.