Can somebody give me a top 5 of Installer Packages Creator aside from WIX and MSI? The said installer creators has the folowing capabilities:

  1. Supports MSI
  2. Has scripting capabilities
  3. Custom/user-defined U.I.
  4. Has product-key or authorization-key capability
  5. Has a boot-strap loader for .NET frameworks

Thanks in advance, Glenn

link
4  
Awwwwwwwwwwwww Community Wiki – Eric Aug 19 '09 at 2:41
2  
Also the question sounds to me like: "of the top 10 installer software packages, just give me numbers 5 to 10; I've no use for those fancy 'superior' ones." ;) – Gavin Aug 19 '09 at 2:46
Do add a tag for Windows and/or append "for Windows" to the title. – Peter Mortensen Aug 23 '09 at 22:45
1  
1  
MSI is not an installer system. MSI is a package format. WIX is an installer system for MSI. – Wayne Koorts Aug 30 '09 at 19:24
show 1 more comment
feedback

closed as not constructive by BalusC, 0A0D, Will Sep 15 '11 at 13:01

This question is not a good fit to our Q&A format. We expect answers to generally involve facts, references, or specific expertise; this question will likely solicit opinion, debate, arguments, polling, or extended discussion. See the FAQ for guidance on how to improve it.

6 Answers

(Updated to address each of the requirements individually)

  1. If you're looking to do build an MSI package, go and read The Definitive Guide to Windows Installer before selecting an application. Most commercial options hide the underlying structure from you, which means a quicker turnaround if your package is really simple. But it also means it's a real pain in the ass to debug if something goes wrong.

    Read the book first, then you'll know enough to understand WiX. Or if you want a WiX GUI then try MSI Factory

  2. While you can use VBS or various other scripting languages with MSI packages, you're better off writing a custom action in C++ for reliability. See why VBScript (and Jscript) custom actions suck for more info.

  3. Easy in WiX to define your own, or there are a number of predefined dialog libraries you can use.

  4. Best solution is to write a C++ DLL to do the validation here, or do product key validation in the software application itself.

  5. For a .NET bootstrapper, you're going to need something else or possibly build your own. Personally I use IRMakeBootstrap that is included with MSI Factory, as is best suited to my needs. It was the most flexible one I could find and purchasing a license worked out cheaper than rolling my own.

Edit: If you're looking for a non-MSI solution, then I'd suggest NSIS. However anyone looking to deploy your software in a corporate environment will almost certainly require an MSI package.

link
Thanks for the edited information. I'm still comparing the features of Setup Factory, MSI Factory and InstallAware. – Glenntoy Aug 26 '09 at 9:12
feedback

Inno Setup is free and powerful.

link
He said he wanted MSI support – Anders Aug 22 '09 at 3:41
feedback

I've been using InstallAware for about a year now. Of the commercial products (InstallShield, Wise), it's a cheaper option and supports your list of capabilities.

link
feedback

InstallJammer is pretty good.

link
feedback

I think Barebone Installation System (or BIS) is pretty neat.

link
feedback

Also you may try Actual Installer

link
feedback

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