vote up 4 vote down star
1

Possible Duplicate:
What is the best choice for building Windows installers?

Being domain agnostic on the application type, which installer software do you suggest to use to provide an application to users? Why?

I heard a lot about Nullsoft, InstallShield etc. Even just a zip (but that don't make you look serious from the client point of view so lets say we talk about installer softwares only).

But most of the time there is no clear argument why one would be "better" than another. I'd like you advice and your experience trying what you tried.

If there is not a "better" solution for all cases at the moment (as i guess there is not) it would help to specify for wich type of problem you choose wich solution.

Thanks!

flag

Many duplicates. For example: stackoverflow.com/questions/3767/… – Lars Truijens Aug 14 at 18:52
or stackoverflow.com/questions/137657/… or stackoverflow.com/questions/356023/… or stackoverflow.com/questions/23836/… – Lars Truijens Aug 14 at 18:54
Wow i didn't find those ones while searching for "installer" ... Maybe a bad search. I'm closing. – Klaim Aug 14 at 18:57

closed as exact duplicate by Lars Truijens, ChrisN, Reed Copsey, Klaim, John Saunders Aug 15 at 2:08

8 Answers

vote up 0 vote down

InstallSheild is a bit too expensive to use for simple projects. It is great for projects with moderate complexity. It is a huge headache to create complex installers with it.

One of the biggest headaches with InstallSheild is that the UI scripting is done with a language called InstallScript. It's not hard to learn, but it has some annoying syntax structures that will drive a C# developer crazy.

link|flag
vote up 1 vote down

Well I've used InnoSetup for about 3 years now, and I believe it's the greatest installer on planet Earth.

It's easy to use if you want it to be, and if you want scripting it's got some really cool scripting features and tools that can let you do practically anything. These days all my setups are on Innosetup and that includes setups for programs that are made on VB6 as well as .Net 3.5. That should tell you something about its versatility.

link|flag
1  
You can also use Inno Setup in your radiator if your engine overheats. – MusiGenesis Aug 14 at 18:55
vote up 0 vote down

I have heard good things about Wix, which is free

http://wix.sourceforge.net/

link|flag
vote up 1 vote down

Inno Setup is much better and easier to use than all the others, and it's free. This one is a no-brainer. I would have children with Inno Setup if Inno Setup were a beautiful woman.

link|flag
vote up 5 vote down

WiX is free, open-source, and pretty easy to use.

link|flag
WiX creates MSI/Windows Installer installations. Most others mentioned here create stand alone exe installers. Both have pros and cons. – Lars Truijens Aug 14 at 19:02
vote up 0 vote down

Have a look at NSIS. A very flexible and customize, script oriented one.
You can create very complex installer and it's free and open source !

link|flag
vote up 2 vote down

Inno Setup is a great installer for windows and its free:

http://www.innosetup.com/isinfo.php

I have used it for some complex installations and its works well.

link|flag
vote up 4 vote down

I've heard great things about Inno Setup but I have not yet used it myself.

link|flag

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