Free Install Wizard software - Stack Overflow most recent 30 from stackoverflow.com 2009-11-29T02:14:12Z http://stackoverflow.com/feeds/question/137657 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/137657/free-install-wizard-software 14 Free Install Wizard software Unkwntech 2008-09-26T03:47:07Z 2009-06-01T10:36:38Z <p>Is there something like install shield that I can use for free?</p> http://stackoverflow.com/questions/137657/free-install-wizard-software/137664#137664 8 Answer by Ferruccio for Free Install Wizard software Ferruccio 2008-09-26T03:48:28Z 2008-09-26T03:48:28Z <p><a href="http://wix.sourceforge.net/" rel="nofollow">WiX</a> (Windows Installer XML) is free.</p> http://stackoverflow.com/questions/137657/free-install-wizard-software/137667#137667 1 Answer by Greg Hewgill for Free Install Wizard software Greg Hewgill 2008-09-26T03:49:11Z 2008-09-26T03:49:11Z <p>I googled for "free installer" and found <a href="http://www.advancedinstaller.com/" rel="nofollow">Advanced Installer</a>, which I recall that I have used successfully in the past.</p> http://stackoverflow.com/questions/137657/free-install-wizard-software/137669#137669 10 Answer by Max Stewart for Free Install Wizard software Max Stewart 2008-09-26T03:49:20Z 2008-09-26T03:49:20Z <p>NullSoft NSIS <a href="http://nsis.sourceforge.net/Main_Page" rel="nofollow">http://nsis.sourceforge.net/Main_Page</a></p> http://stackoverflow.com/questions/137657/free-install-wizard-software/137670#137670 0 Answer by benPearce for Free Install Wizard software benPearce 2008-09-26T03:49:30Z 2008-09-26T03:49:30Z <p><a href="http://nsis.sourceforge.net/" rel="nofollow">NSIS</a></p> http://stackoverflow.com/questions/137657/free-install-wizard-software/137671#137671 0 Answer by cruizer for Free Install Wizard software cruizer 2008-09-26T03:49:31Z 2008-09-26T03:49:31Z <p>There's the open source <a href="http://nsis.sourceforge.net/Main_Page" rel="nofollow">Nullsoft Installer</a> which began with WinAmp, if I'm not mistaken.</p> <p>For .NET development you may want to take a look at <a href="http://wix.sourceforge.net/" rel="nofollow">WiX</a>, which Microsoft also open sourced. IT's good for those with continuous integration setups.</p> http://stackoverflow.com/questions/137657/free-install-wizard-software/137672#137672 0 Answer by mopoke for Free Install Wizard software mopoke 2008-09-26T03:49:44Z 2008-09-26T03:49:44Z <p>NSIS (nullsoft scriptable installer system) will do the job. It's open source.</p> <p><a href="http://nsis.sourceforge.net/Main_Page" rel="nofollow">http://nsis.sourceforge.net/Main_Page</a></p> http://stackoverflow.com/questions/137657/free-install-wizard-software/137673#137673 0 Answer by Harley for Free Install Wizard software Harley 2008-09-26T03:49:51Z 2008-09-26T03:49:51Z <p>The <a href="http://nsis.sourceforge.net/Main_Page" rel="nofollow">Nullsoft installer</a> is free, powerful and very, very good.</p> http://stackoverflow.com/questions/137657/free-install-wizard-software/137674#137674 0 Answer by Joe Skora for Free Install Wizard software Joe Skora 2008-09-26T03:49:51Z 2008-09-26T03:49:51Z <p>The <a href="http://nsis.sourceforge.net/Main_Page" rel="nofollow">nullsoft scriptable install system</a> is an open source solution that provides a very powerful and professional install system.</p> http://stackoverflow.com/questions/137657/free-install-wizard-software/137678#137678 0 Answer by Scott Bennett-McLeish for Free Install Wizard software Scott Bennett-McLeish 2008-09-26T03:50:29Z 2008-09-26T03:50:29Z <p><a href="http://nsis.sourceforge.net/Main_Page" rel="nofollow">Nullsoft Installe</a>r is the way to go. It has a bit of a steep learning curve but once you've worked out the scripting you'll have a decent installer in no time. Check out the Eclipse plugin too, it is a great addition.</p> http://stackoverflow.com/questions/137657/free-install-wizard-software/137695#137695 15 Answer by hectorsosajr for Free Install Wizard software hectorsosajr 2008-09-26T03:55:40Z 2008-09-26T03:55:40Z <p>I have been using <a href="http://www.innosetup.com/isinfo.php" rel="nofollow">Inno Setup</a> for several years now. It's mature enough that it has a lot of plug-ins. I've found that the forums/newsgroups are very good at answering all the questions I've had so far.</p> http://stackoverflow.com/questions/137657/free-install-wizard-software/137724#137724 0 Answer by Merus for Free Install Wizard software Merus 2008-09-26T04:06:54Z 2008-09-26T04:06:54Z <p>We use <a href="http://dennisbareis.com/makemsi.htm" rel="nofollow">MakeMSI</a> here to construct Windows installers. Very steep learning curve, but it's guaranteed to work on any Windows system.</p> <p>We've had problems with Nullsoft installers in the past, as silent, automated installs (the kind done all the time in managed environments) aren't supported by default.</p> http://stackoverflow.com/questions/137657/free-install-wizard-software/137734#137734 44 Answer by lubos hasko for Free Install Wizard software lubos hasko 2008-09-26T04:09:51Z 2009-04-19T11:46:01Z <p><strong><a href="http://wix.sourceforge.net/" rel="nofollow">WiX</a></strong></p> <ul> <li><strong>Very powerful and flexible</strong>.</li> <li>Can produce MSI packages (Microsoft deployment format of choice)</li> <li><strong>Almost no documentation</strong></li> <li><strong>Very steep learning curve.</strong></li> <li>XML-based.</li> <li>Recommended for very complex installators.</li> </ul> <p><strong><a href="http://www.innosetup.com/isinfo.php" rel="nofollow">InnoSetup</a></strong></p> <ul> <li>Cannot produce MSI packages.</li> <li><strong>Based on INI files (less powerful but very low learning curve)</strong></li> <li>Possible to inject Pascal procedures for extra flexibility.</li> </ul> <p><strong><a href="http://nsis.sourceforge.net/Main%5FPage" rel="nofollow">NSIS</a></strong></p> <ul> <li>Cannot produce MSI packages.</li> <li>Fully scripted, very powerful but at cost of high learning curve.</li> <li><strong>Recommened if WiX is too much and InnoSetup not enough.</strong></li> </ul> <p><strong><a href="http://www.advancedinstaller.com" rel="nofollow">AdvancedInstaller</a></strong></p> <ul> <li>Basic version is free.</li> <li>Can produce MSI packages.</li> <li><strong>Very good user-interface, almost no learning curve to get things done.</strong></li> <li>XML-based (but schema is not very user-friendly, doesn't really matter as you would use GUI editor anyway)</li> <li>The best option if you have only basic installer requirements and don't have time to learn something new.</li> </ul> http://stackoverflow.com/questions/137657/free-install-wizard-software/138026#138026 1 Answer by jussij for Free Install Wizard software jussij 2008-09-26T06:25:03Z 2008-09-26T06:25:03Z <p><a href="http://www.innosetup.com/isinfo.php" rel="nofollow">Inno Setup</a> has worked very well as the <a href="http://www.zeusedit.com" rel="nofollow">Zeus</a> installer for many years.</p> http://stackoverflow.com/questions/137657/free-install-wizard-software/495112#495112 0 Answer by fabrizi0 for Free Install Wizard software fabrizi0 2009-01-30T10:47:09Z 2009-01-30T10:47:09Z <p>I would consider <a href="http://www.devage.com/Wiki/ViewArticle.aspx?name=dotnetinstaller&amp;version=0" rel="nofollow">dotNetInstaller</a> as well.</p> <p>It's pretty easy to setup installation with prerequisites, has a nice wizard and an editor that let manage the xml scripting from a form.</p> http://stackoverflow.com/questions/137657/free-install-wizard-software/521587#521587 0 Answer by tim for Free Install Wizard software tim 2009-02-06T18:36:20Z 2009-02-06T19:49:16Z <p>+1 for Inno. I was not a fan of NSIS/Nullsoft. </p> <p>EDIT</p> <p>the reason I did not like NSIS was the hoops I had to jump trough just to get the version information in the installer title/script. Basically you have to preprocess the scripts or run the install generator twice. Maybe they fixed it, maybe not. But what a hassle.</p> <p>I also found that the versions of the plugins and the versions of the main component were brittle. For example, things didn't work well when mixed and matched/upgraded. </p> <p>We had to keep a specific version of NSIS and the plugins we used in a repository to ensure we had them. </p> http://stackoverflow.com/questions/137657/free-install-wizard-software/664041#664041 0 Answer by Binary Phile for Free Install Wizard software Binary Phile 2009-03-19T20:59:09Z 2009-03-19T23:49:53Z <p>I was looking for a similar solution and found the new kid on the block to be <a href="http://www.installjammer.com/" rel="nofollow">InstallJammer</a>. Open source, extremely friendly and powerful-looking (I say looking because I never actually finished using it on a project), able to produce installers for multiple platforms.</p> <p>Actions in particular seemed very easy to set up.</p> <p>If it were to live up to it's goals, it would easily give the other install solutions a run for their money.</p> <p>My question is this: has anybody used it recently for a real project?</p>