views:

62

answers:

4

Does anyone know any good software packager other than InstallShield?

What software did MS use to create the Visual Studio 2005/2008 installers?

Also, does it make sense to just use a "general purpose" language like C# to create an installer rather than using software packagers?

Thanks!

A: 

Have a look at the nullsoft installer http://nsis.sourceforge.net/Main%5FPage , which is free.

It does not use the Microsoft MSI system which may (if you ask me) or may not be a good thing.

mikemay
It doesn't support rollback which is really a pain in the butt if an install fails. (OK, maybe it does and no installer I've ever seen with NSIS made use of iT.)
Joey
A: 

I use Inno setup , very nice.

and there is a GUI tool ISTool to help you write inno setup script.

zhongshu
+1  A: 

I'm using NSIS or Inno Setup.

Gregory Pakosz
+2  A: 

Advanced Installer.

I have been using it for ages, and it works very well

Ngu Soon Hui