vote up 0 vote down star
1

Hi guys,

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

flag
2  
Awwwwwwwwwwwww Community Wiki – Eric Aug 19 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 Schultz Aug 19 at 2:46
Do add a tag for Windows and/or append "for Windows" to the title. – Peter Mortensen Aug 23 at 22:45
1  
Near-duplicates: stackoverflow.com/questions/3767 and stackoverflow.com/questions/734057 – Peter Mortensen Aug 23 at 22:51
MSI is not an installer system. MSI is a package format. WIX is an installer system for MSI. – Wayne Koorts Aug 30 at 19:24

5 Answers

vote up 0 vote down

Inno Setup is free and powerful.

link|flag
He said he wanted MSI support – Anders Aug 22 at 3:41
vote up 1 vote down

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|flag
vote up 4 vote down

(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|flag
Thanks for the edited information. I'm still comparing the features of Setup Factory, MSI Factory and InstallAware. – Glenntoy Aug 26 at 9:12
vote up 0 vote down

InstallJammer is pretty good.

link|flag
vote up 0 vote down

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

link|flag

Your Answer

Get an OpenID
or

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