vote up 2 vote down star
1

Most developers and engineers that have experience writing software and deploying with the packaged Visual Studio Setup Project know about it's many shortcomings. Usually in regards to installation customization, upgrade paths, etc. What are some good alternatives for software deployment? In particular I'm interested in features, .NET integration or scripting capabilities, easy of use, and price.

flag

71% accept rate

4 Answers

vote up 8 vote down check
link|flag
vote up 3 vote down

NullSoft Installer is my all time favorite. It creates the smallest setup executables possible. Also Uninstall is super clean. It will remove all the traces and leave PC in the same shape as before installation.

link|flag
I second that and I can also add that it installs really fast. The biggest problem is creating it, the scripting language and putting some plugins working is a pain. But the focus is the user right? – Artur Carvalho Oct 13 '08 at 14:05
vote up 3 vote down

See http://stackoverflow.com/questions/3767/what-is-the-best-choice-for-building-windows-installers for a discussion of several good solutions.

link|flag
vote up 1 vote down

NullSoft Installer (NSIS) is good, but building the scripts is painful - even with HM NIS Edit. You basically have to learn a whole different language to be able to work with their scripts. Example:

Plug-ins are necessary to do a lot of things as well, like check the .NET framework version or see if the application you are updating is already running.

Aside from that though, once you get everything configured it is fast and works well. There's really not a better installer (for free) out there.

link|flag

Your Answer

Get an OpenID
or

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