vote up 9 vote down star
8
  • Installshield
  • Visual Studio
  • NSIS
  • other ...

Why?

Advantages?

Disadvantages?

flag

1  
Depends on the context. This question would be better if it explicitly stated what are the requirements, what platforms need to be supported, etc. Or if it's just a very generic poll, be explicit about that too. – Jonik Apr 17 at 9:46
Is this a duplicate of stackoverflow.com/questions/3767/… ? – dthrasher Aug 30 at 19:16

19 Answers

vote up 13 vote down check

I've used InnoSetup for all my installers so far and I'm very happy with it's scripting functionalities.

Key Features (taken from Product Home Page)

  • Support for all versions of Windows in use today: Vista, XP, 2008, 2003, 2000, Me, 98, 95, and NT 4.0. (No service packs are required.)
  • Extensive support for installation of 64-bit applications on the 64-bit editions of Windows. Both the x64 and Itanium architectures are supported. (On the Itanium architecture, Service Pack 1 or later is required on Windows Server 2003 to install in 64-bit mode.)
  • Supports creation of a single EXE to install your program for easy online distribution. Disk spanning is also supported.
  • Standard Windows 2000/XP-style wizard interface.
  • Customizable setup types, e.g. Full, Minimal, Custom.
  • Complete uninstall capabilities.
  • Installation of files: Includes integrated support for "deflate", bzip2, and 7-Zip LZMA file compression. The installer has the ability to compare file version info, replace in-use files, use shared file counting, register DLL/OCX's and type libraries, and install fonts.
  • Creation of shortcuts anywhere, including in the Start Menu and on the desktop.
  • Creation of registry and .INI entries.
  • Integrated Pascal scripting engine.
  • Support for multilingual installs.
  • Support for passworded and encrypted installs.
  • Silent install and uninstall.
  • Full source code is available (Borland Delphi 2.0-5.0).

(My) Pros:

  • Simple Scripting
  • Simple Installer generation via "addon" ISTool
  • Small Files
  • It just works :)
  • Many USEFUL commandline parameters available for the installer

(My) Cons:

  • Obviously Microsoft is not so much into supporting other installers, so having it install standard runtime libraries is a bit more work: You've got to find runtime distributables MANUALLY, add them to the installer and execute them.
link|flag
I've used InnoSetup for years. It's the best installer I've ever used, bar none. – The Wicked Flea Dec 10 '08 at 13:40
It sounds really good, however, as we distribute application for windows and want to be "Windows logo" compliant, our installer shall be based on MSI ... – Nicolas Dec 15 '08 at 12:55
1  
Another con: InnoSetup doesn't support Unicode for translation files. – Jon Tackabury Jan 19 at 19:28
vote up 9 vote down

I love NSIS -

  • it's not as absurdly complicated as InstallShield,
  • it's easier to version control as it's text-based, not binary.
  • Writing plugins is done in C so you can write very powerful ones (I extended our encryption library with an NSIS interface quite easily, for example).
  • I find the tutorials and support better for NSIS.
  • I've had InstallShield break, for no clear reason, and had to re-build the project from scratch, because something had gone wrong somewhere. NSIS is just a simple compiler, so it doesn't break randomly.
  • It has a huge number of really useful plugins, for rollback, forms, programming logic, and anything else you're likely to want.

Note that I haven't used InstallShield for several years, so my criticisms may not be valid anymore.

One last thing, if you do use NSIS I strongly recommend you investigate the LogicLib plugin. It adds constructs like "If...End If", "While/For loops", "Switch" statements, etc.

link|flag
I live by NSIS too :) – leppie Dec 10 '08 at 13:44
vote up 5 vote down

Hi

I've been using both Visual Studio and WiX to create MSI installers.

Both are far from perfect in my opinion.

Visual Studio is only good for simple setups which use the default settings of the wizard. Customizing is a pain.

WiX is powerful, but I had to upgrade several times to the latest developer snapshots to get localization working and the documentation is very poor.

I would be very interested in hearing about other people's experience with installer technologies.

link|flag
Have began to use Wix myself and besides the appalling documentation i think it's brilliant. – Conrad Mar 4 at 11:43
+1 WiX. Documentation isn't great, but it creates great installers – Adam Tegen Mar 5 at 20:40
vote up 3 vote down

+1 InnoSetup, amazing and simple

link|flag
3  
You know, you can say "+1" by clicking on the upvote button; no need to post a separate "+1" – Brian Campbell May 1 at 17:48
vote up 2 vote down

I wouldn't recommend InnoSetup for any kind of modern, enterpise installer. Most of its "features" are pretty standard installer features. It is difficult to find an installer that doesn't support all versions of Windows, edit the registry, compress files, provide a wizard interface, support uninstall etc. And as for features like "Integrated Pascal scripting engine."... Is that a feature?

Also, InnoSetup doesn't seem to address quite a large number of things that are critical to modern day installers. I would be more interested in an installer that can handle: - .NET Framework installation and intergration - SQL compact installation - Windows Media Framework Installation - Ability to call out to custom managed code

Unless you are writing an application with limited distribution (and probably one that isn't in .NET), I would consider using something more modern and more supported.

We are distributing our application to potentially hundreds of thousands of users, so the cost of the site license for the installer is irrelevant. We use Installshield because so many other companies do, which means that users are used to the standard InstallShield interface. Do not underrate this factor. If people have a quick installer a that looks and behaves exactly as they expect, it can radically affect the success of the product. Also, when I'm having trouble downloading and installing some complicated dependency on x64 architectures, it is somewhat more comforting to have InstallShield support that some Delphi Source Code from the late 90s.

Sure, Installshield definitely has its quirks and weaknesses. It attempts (sometimes successfully, sometimes not) to minimize the amount of work you need to do to get started but to still give you the control to step in and fix things at a low-level if need be.

Despite its annoying traits, we have gone from pretty much zero installer knowledge to being able to produce a very complex (but simple to the user) installer that installs a fair number of dependencies on various XP and Vista configurations. I'm almost certain we would have dead-ended had we chosen InnoSetup. And that dead-end cost is far greater than any licensing cost.

link|flag
vote up 1 vote down

After trying several, including Visual Studio, Wise for Windows Installer, and Tarma (now gone bust) - we settled for Advanced Installer

Advantages are:

  • Simple user interface for building your installer
  • Flexible
  • Very active at releasing new versions with useful features
  • Responsive technical support
  • Free version for basic install packages

Disadvantages

  • To get advanced features (custom UIs, merge module support etc) it can get a bit expensive, although worth it in my opinion (we have enterprise licenses)

Definitely worth investigating to see if it meets your requirements

link|flag
Tarma gone bust? Is this a different company: tarma.com (actual question; I'm not too familiar with the variety of Installer companies and is actually doing some research of a suitable product) – Darkwoof Apr 30 at 6:32
The same company yes. We brought licenses, but they said that they would no longer be developing the product or providing updates so we got our money back. Shame, as it seemed pretty good. They seem to be still selling Tarma though, so perhaps they found some additional funding to keep going. I'd still recommend Advanced installer however. – John Sibly Apr 30 at 9:41
I see, I see. I tried out their trial version couple of days ago (Tarma), went rather well for most parts but I encountered some usability issues. For Advanced Installer I posted on their forums but found that I might not be able to get things done exactly the way I wanted, so I should be still looking around. Anyway, thanks for the info! – Darkwoof May 4 at 13:44
Just wanted to add that I wrote in to Tarma and clarified some of the issues I was having. Will thus be evaluating them amongst the rest a little more. – Darkwoof May 8 at 4:36
vote up 1 vote down

You should use a microsoft windows installer based one.

wix is for free. you can find it here: http://wix.sf.net

if you understand german, there is a german tutorial in the magazine "entwickler magazin".

dont use legency installers like nsis or inno setup. they can do installs for vista but if you are using those, your software cant be called "made for windows"/"Vista compatible"

link|flag
vote up 1 vote down

Currently we use Installshield 2008 Premier Edition

There's a really nice GUI for creating the installers, and then for the actual build we use the command line interface. We build about 20 installer variations (English) for the same product, plus additional variations in German. Adding another 4 languages once the product localization is completed.

Installshield 2008 is a great improvement over Installshield 12 (which the company was using when I started), a much cleaner uninstall process.

Advantages

  • MSI output
  • Nice GUI for creating dialogs
  • Premier version gives you additional languages (cuts down on localization time)
  • Command line support

Disadvantages

  • GUI is a resource hog.
  • Expensive.
  • Additional costs for access to support (per incident, or maintenance contract)

If you're distributing Windows software then learn the MSI fundementals. I highly recommend purchasing The Definitive Guide to Windows Installer it's an invaluable reference. All examples in the book use Visual Studio + Orca, but the technology can be applied to any application used to build MSI files.

I plan to move to WIX inside the next 6 months to complete automation of the installer build process, currently I'm happy that we've automated 95% of it using the Installshield command line.

In summary, if you're developing commercial software you have to decide how valuable your time is. Installshield is great, easy to get started with and you'll be up and running in a few days for a simple application. If you're planning to distribute localized software and installers, I really can't emphasize just how easy this is to do with Installshield Premier.

WIX is free, but comes with a steep learning curve and I wouldn't touch it with a 10 foot pole until you understand how Windows Installer and MSI files work, with no knowledge of Windows Installer using WIX is going to set you back quite a while while you get up to speed on Windows Installer. While Installshield will abstract all the underlying details until you decide you want to go poking around, WIX throws you right in the deep and you better learn to swim - fast!

link|flag
Off topic, do you use one InstallShield project for building the 20 English variations and German variations? Do you use Release Flags to control what gets built in to the install or do you just use conditions at install time? – Jamie Dec 11 '08 at 20:43
I LOVE InstallShield. The big thing is, you need to learn Windows Installer (MSI) technology. Once you understand it fully, you can unlock the power of InstallShield. – Mick Jan 2 '09 at 16:12
@Jamie - using one project per language at the moment. I use a combination of release flags and install conditions for variations on the English installer (and soon the other languages). – sascha Jan 4 '09 at 3:01
vote up 0 vote down

Hi, For small applications, Setup Project from Visual Studio is great, and it's really easy to prepare installer and integrate it with build comp. The next option is Inno Setup 5. I have been using this tool for ages. I've started doing installations in Delphi 5/6 age and recently I prepared installer for .NET 2.0 application. And it's small, fast and full of customization options. All advanced things you can write there using VB script syntax.

link|flag
Scripting in Inno Setup is done in a Pascal dialect, using the embedded RemObjects Pascal Scripting engine. – mghie Dec 20 '08 at 16:22
vote up 0 vote down

After considering an upgrade to the latest InstallAware from the version that comes with Delphi 2007, I actually plumped for Setup Factory by Indigo Rose.

InstallAware was (and is) a pretty competant tool but it was incredibly expensive for me (one-man micro ISV). Setup Factory looks a little quirky, and it's certainly not the most obvious of tools to use, but underneath it there's a lot of flexibility and functionality and I still feel like I made a good choice. It copes fine with things like SQL Express, bits of .Net runtime and the pieces that make up my Delphi applications.

In years gone by, I was a big fan of Wise but my version got more and more out of date (I was at version 8.0 of Wise InstallMaster) and the cost of cross-grading to their current product was high (not to mention I'd have to relearn or adapt a lot of what I already had).

In the end, I figured if I was going to spend time and money then I might as well evaluate some of the other options, hence InstallAware and ultimately Setup Factory.

Had I not picked Setup Factory I would have spent some time with InnoSetup, as several Delphi developers suggested it to me, all independently of each other.

link|flag
vote up 0 vote down

The easiest way I've seen so far is using Visual studio, however it only really works for .Net/Windows projects...

Here are a few alternatives:

I've tried install4j which is pretty good event if it takes a little time to get used to.

The Java Service Wrapper is really good and quite intuitive if you want to wrap up a java application to run as a service/daemon under either Windows or Linux.

Also look at Wix which although difficult to use it very powerful.

link|flag
vote up 0 vote down

Have you looked at a product from MacroVision called InstallAnywhere [http://www.acresso.com/products/ia/installanywhere-overview.htm]. I've used this product before and it allowed you to quickly create a professional looking installation. A nice side feature is the ability add functionality to the tool via Java based plugins.

link|flag
The problem with InstallAnywhere is that it's outrageously expensive! – Kaitsu Apr 16 at 13:51
vote up 0 vote down

Right now we use InstallShield 2009 Professional to do all of our product installation. The main advantage to using it right now isn't really a great one - it's what we have used in past versions of our product. However, for the most part putting together an installation database and merge modules is relatively difficult to learn, and adding new features and components to the installer can often be a nightmare - especially in cases where the new feature is in a different source tree than our original.

Adding dependencies and feature level setup doesn't really lend well to ease of use. In fact, the documentation that I find myself relying on regularly is over 1000 pages long in PDF format, and half the time I don't even know what I'm supposed to be searching for.

We are currently getting ready to start development on some major changes. One that may come into play will be updating or outright removing InstallShield 2009 in something more favorable for use. It appears you already got a good answer, but I felt like putting in my two cents might help too. I'm definitely glad this question was asked, I know I was curious.

link|flag
vote up 0 vote down

For Windows-specific installers, I think all the good alternatives have already been mentioned (NSIS, InnoSetup, Wix). If you need to support software that runs in multiple platforms, such as a Java application, you may consider the BitRock cross platform installer (by yours truly), IzPack (open source, written in Java) or InstallAnywhere (also referenced above, significantly more expensive). If you could provide more information on what you are trying to accomplish and what kind of program you are trying to package, it may help with recommending the best alternative

link|flag
vote up 0 vote down

For Windows-only or cross-platform installers, I use InstallJammer. Probably because I wrote it, but I'd still use it even if I hadn't. I think. :)

It's cross-platform, fast and very easy to use, but it also has a powerful scripting language underneath the actions that let you do just about anything you could want.

link|flag
vote up 0 vote down

Here is another option that haven't been mentioned: Wix# (written by Oleg Shilo). If you are planning to deploy .NET apps, this may be worth considering. Here is an intro article explaining how to use it: "Wix# (WixSharp) - managed interface for WiX" (make sure you read comments: they discuss some limitations of Wix#).

For regular (non-NET apps), I would use NSIS (I've seen it used by lots of popular apps, such as WinAmp). In case you're interested in additional resources, check references at the end of this post: "Dude, where is your installer?" (sorry for the self-promo, but I hope that some of the references from the post will be helpful).

link|flag
vote up 0 vote down

I know two answers already mention Installshield, but I"ve been writing installers for years and have a few insights not previously mentioned, I think. We're using Installshield 2009 Professional for our installers at our current company.

Pros:

  • Installshield's scripting language, Installscript, allows you to write arbitrarily complex installers with some pretty complex flows and heavy lifting configuration, even for MSI installers via Installscript-MSI.
  • It's been around forever, and there is a very strong community around it, so very likely if you're trying to do something it's either been done or attempted before, and someone's written about it.
  • It can product the time honored Installshield setup.exe standard or (as previously mentioned) MSI packages.

Cons:

  • As previously mentioned, the documentation ranges from lackluster/mediocre to positively abhorrent. Often trial and error is the only way to figure out of function X will work with parameter Y, and that's no way to run a ship. The Windows Installer integration functions are in particularly bad shape documentation wise, and since the Installscript-MSI project type is on the newer side, less has been written about it by the community as well.
  • Acresso's licensing system is err... Rather heavy weight and punishes organizations with a dynamic environment. I hesitate to be too harsh here because I realize that piracy is a problem, but in the end analysis I feel like punishing your users is not the solution.
  • The Installscript language can be somewhat of a shock for programmers used to languages with more structure and abstraction available. Think Atari BASIC, but with labels rather than line numbers, and where the only data structures you're allowed to manipulate directly are numbers and strings. The rest must be implemented using a suite of list manipulation methods - it's like working with data structures using salad tongs :(
  • The Installshield developer UI can be extremely intimidating. There are about a million different panes and views where settings can hide, so when something goes wrong it can be a positively head bashing task to figure out where it lives.
  • Complex flow of control can get very tricky. Labels can't be passed to functions, so you're stuck with gigantic case statements to dispatch to the correct location.

I realize there are more cons than pros here, but really if your installer needs to do a lot under the hood (connect to databases, massage XML files and the like) then you should at least give Installshield a serious look.

link|flag
vote up 0 vote down

I won't use any Windows installer based technology anymore.

One to many instances of touch datafile causes datafile to not be updated by the installer anymore.

link|flag
vote up -1 vote down

Visual Studio for the Package One (simple) and more often I use the Publish with ClickOnce for Installer (easy for deployement across all the company and automatic update).

ClickOnce desavantages

  • Require to have IIS somewhere for the first install.
  • Cannot install to Program Files.

ClickOnce advantages

  • Fastest installer available, 1 button to click (Publish) and it's available to everyone.
  • Update is transparent for user.


Visual Studio desavantages

  • Limited functionnality
  • Limited setup option/customization

Visual Studion advantages

  • Came with VS and pretty fast to build something
  • It works out of the box
link|flag
You really need to spell check this post! ;P – leppie Dec 10 '08 at 13:45
Click edit and do it. Does not seem so bad :P but like I already said, english is far from my first language so :P – Daok Dec 10 '08 at 13:46

Your Answer

Get an OpenID
or

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