Hi,
Just wondering if anyone is interested in sharing their experiences with the various installer packages out there?
I have only ever used NSIS for deployment, however I have started the search for something better. Install Shield is obvious "end game" package however the price is fairly off putting.
Installer Packages
- RedEyeCoder
- Gnome
- Posts: 344
- Joined: Sat Jun 16, 2007 7:29 am
- Location: Brisbane, Australia
- SunSailor
- Gnoll
- Posts: 699
- Joined: Sun Jan 02, 2005 5:45 pm
- Location: Velbert, Germany
- x 2
- Contact:
-
capture
- Goblin
- Posts: 237
- Joined: Sun Nov 20, 2005 2:44 pm
yeah
Inno Setup has met all of my needs in the past, but it only creates a .exe install file which is not exactly what you are looking for. As for NSIS I have never heard of it, but after just looking it up now their website makes it look like a very viable option. I've also heard that there is WixEdit, which people say is very good.
- Klaim
- Old One
- Posts: 2565
- Joined: Sun Sep 11, 2005 1:04 am
- Location: Paris, France
- x 56
- Contact:
A similar and recent thread on the same subject on the IndieGamer forum : http://forums.indiegamer.com/showthread.php?t=13224
NSIS seems popular.
Hope it helps.
NSIS seems popular.
Hope it helps.
- RedEyeCoder
- Gnome
- Posts: 344
- Joined: Sat Jun 16, 2007 7:29 am
- Location: Brisbane, Australia
With NSIS it seems that anything more than an extremely basic installer/file setup requires a decent amount of manual script editing. I can make multiple installers during a week and the process is erroneous and time costly.SunSailor wrote:What's so bad about the NSIS thing? To me, it seems it can compete quite well with InstallShield, especially, as it is free. What's the drawback for you? And what would be your needs for a more sophisticated solution?
I am definitely looking for a more UI orientated approach over scripting.
Thanks for that, I read through all of that and it seems Inno and NSIS are the preferred candidates.Klaim wrote:A similar and recent thread on the same subject on the IndieGamer forum : http://forums.indiegamer.com/showthread.php?t=13224
NSIS seems popular.
Hope it helps.
It looks the most people would use Inno except that NSIS has a smaller disk footprint - for me I could could not care less about 300k extra.
Any extra information from people will be appreciated!
- twilight17
- Goblin
- Posts: 297
- Joined: Thu Aug 23, 2007 3:47 am
- x 1
Heres some: http://www.thefreecountry.com/programming/setup.shtml
and some more:
http://www.clickteam.com/eng/installcreator.php
http://installer.excelsior-usa.com/
http://www.installjammer.com/
http://bitrock.com/download_overview.html
(Haven't tested any of those yet)
and some more:
http://www.clickteam.com/eng/installcreator.php
http://installer.excelsior-usa.com/
http://www.installjammer.com/
http://bitrock.com/download_overview.html
(Haven't tested any of those yet)
- RedEyeCoder
- Gnome
- Posts: 344
- Joined: Sat Jun 16, 2007 7:29 am
- Location: Brisbane, Australia
- sinbad
- OGRE Retired Team Member

- Posts: 19269
- Joined: Sun Oct 06, 2002 11:19 pm
- Location: Guernsey, Channel Islands
- x 67
- Contact:
NSIS is great but can't do Windows Installer tasks (such as updating manifests), so you have to call external redist executables to sort those dependencies out which is less convenient.
WiX is open source and can do Windows Installer stuff, at the expense of being a bit less easy to customise than NSIS.
WiX is open source and can do Windows Installer stuff, at the expense of being a bit less easy to customise than NSIS.
- Jabberwocky
- OGRE Moderator

- Posts: 2819
- Joined: Mon Mar 05, 2007 11:17 pm
- Location: Canada
- x 220
- Contact:
Re: yeah
I'm building my first installer, and I decided to use Inno Setup.capture wrote:Inno Setup has met all of my needs in the past, but it only creates a .exe install file which is not exactly what you are looking for. As for NSIS I have never heard of it, but after just looking it up now their website makes it look like a very viable option. I've also heard that there is WixEdit, which people say is very good.
There is a gui editor (ISTool script editor) which makes the installer creation pretty easy, and the documentation is very good.
It has the same problem as NSIS (can't do windows installer tasks) - sort of. It can run .msi files, but not .msm files (used for the VC++ redistributables).

