Free Install Wizard software - Stack Overflow most recent 30 from stackoverflow.com2009-11-29T02:14:12Zhttp://stackoverflow.com/feeds/question/137657http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/137657/free-install-wizard-software14Free Install Wizard softwareUnkwntech2008-09-26T03:47:07Z2009-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#1376648Answer by Ferruccio for Free Install Wizard softwareFerruccio2008-09-26T03:48:28Z2008-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#1376671Answer by Greg Hewgill for Free Install Wizard softwareGreg Hewgill2008-09-26T03:49:11Z2008-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#13766910Answer by Max Stewart for Free Install Wizard softwareMax Stewart2008-09-26T03:49:20Z2008-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#1376700Answer by benPearce for Free Install Wizard softwarebenPearce2008-09-26T03:49:30Z2008-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#1376710Answer by cruizer for Free Install Wizard softwarecruizer2008-09-26T03:49:31Z2008-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#1376720Answer by mopoke for Free Install Wizard softwaremopoke2008-09-26T03:49:44Z2008-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#1376730Answer by Harley for Free Install Wizard softwareHarley2008-09-26T03:49:51Z2008-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#1376740Answer by Joe Skora for Free Install Wizard softwareJoe Skora2008-09-26T03:49:51Z2008-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#1376780Answer by Scott Bennett-McLeish for Free Install Wizard softwareScott Bennett-McLeish2008-09-26T03:50:29Z2008-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#13769515Answer by hectorsosajr for Free Install Wizard softwarehectorsosajr2008-09-26T03:55:40Z2008-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#1377240Answer by Merus for Free Install Wizard softwareMerus2008-09-26T04:06:54Z2008-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#13773444Answer by lubos hasko for Free Install Wizard softwarelubos hasko2008-09-26T04:09:51Z2009-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#1380261Answer by jussij for Free Install Wizard softwarejussij2008-09-26T06:25:03Z2008-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#4951120Answer by fabrizi0 for Free Install Wizard softwarefabrizi02009-01-30T10:47:09Z2009-01-30T10:47:09Z<p>I would consider <a href="http://www.devage.com/Wiki/ViewArticle.aspx?name=dotnetinstaller&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#5215870Answer by tim for Free Install Wizard softwaretim2009-02-06T18:36:20Z2009-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#6640410Answer by Binary Phile for Free Install Wizard softwareBinary Phile2009-03-19T20:59:09Z2009-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>