How do I create an installer for a .Net website, Windows Service, and more??? - Stack Overflow most recent 30 from stackoverflow.com2009-12-03T05:02:57Zhttp://stackoverflow.com/feeds/question/131600http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/131600/how-do-i-create-an-installer-for-a-net-website-windows-service-and-more1How do I create an installer for a .Net website, Windows Service, and more???JasonS2008-09-25T05:29:44Z2009-06-25T23:15:07Z
<p>I need to create an installer program that will do install the following:</p>
<ol>
<li>ASP.Net Website </li>
<li>Windows Service</li>
<li>SQL Express if it isn't installed
and the user doesn't have a SQL
Server</li>
<li>Dundas Charts</li>
<li>ASP.Net AJAX v.1.0</li>
<li>ReportViewer control (for 2.0 Framework)</li>
<li>Check Framework prerequisites (2.0)</li>
<li>Configure IIS and app.config (data connection strings, etc.)</li>
</ol>
<p>Is it realistic to be able to do this with a VS Setup Project? Or, should I be looking at other install tools? </p>
http://stackoverflow.com/questions/131600/how-do-i-create-an-installer-for-a-net-website-windows-service-and-more/131604#1316045Answer by Alexander Kojevnikov for How do I create an installer for a .Net website, Windows Service, and more???Alexander Kojevnikov2008-09-25T05:31:27Z2008-09-25T05:31:27Z<p>You can use <a href="http://wix.sourceforge.net/" rel="nofollow">WiX</a></p>
http://stackoverflow.com/questions/131600/how-do-i-create-an-installer-for-a-net-website-windows-service-and-more/184114#1841140Answer by JasonS for How do I create an installer for a .Net website, Windows Service, and more???JasonS2008-10-08T18:20:53Z2008-10-08T18:20:53Z<p>I used WiX. I banged my head against the wall for a few days, then got the hang of it. The WiX mailing list is key if you have never worked with WiX before.</p>
http://stackoverflow.com/questions/131600/how-do-i-create-an-installer-for-a-net-website-windows-service-and-more/931544#9315442Answer by YordanGeorgiev for How do I create an installer for a .Net website, Windows Service, and more???YordanGeorgiev2009-05-31T07:22:36Z2009-06-02T19:59:23Z<p>Most of the best open source tools and programs for Windows are distributed using <a href="http://nsis.sourceforge.net/Docs/" rel="nofollow">NSIS</a></p>
<p>ASP.Net Website ( no listing - bug in stackoverflow - code not formatting while list above .. )</p>
<pre><code>CreateDirectory $INSTDIR
SetOutPath $INSTDIR
; HERE UNZIP ACTUALLY THE FILES (ADD *.js files if needed )
; PACK ALL THE FILES EXCEPT THOSE WITH FILE EXTENSIONS after the /x
File /r /x *.suo /x *.MDF /x *.exclude /x *.ldf /x *.pl /x *.nsis /x *.cmd "siteFolderName\*.*"
</code></pre>
<ul>
<li><a href="http://nsis.sourceforge.net/NSIS%5FService%5FLib" rel="nofollow">Windows Service</a> and <a href="http://www.codeproject.com/KB/system/WindowsService.aspx" rel="nofollow">here</a></li>
<li><a href="http://stackoverflow.com/questions/150223/sql-2005-express-edition-install-new-instance">SQL Express if it isn't installed and the user doesn't have a SQL Server</a></li>
<li>Dundas Charts - call silent installer </li>
<li>ASP.Net AJAX v.1.0 - call silent installer</li>
<li>ReportViewer control (for 2.0 Framework)</li>
<li>Check Framework prerequisites (2.0) - check NSIS system func</li>
<li>Configure IIS and app.config (data connection strings, etc.) - I do this with preconfiguring the files in the installer and writing those during install time </li>
</ul>
http://stackoverflow.com/questions/131600/how-do-i-create-an-installer-for-a-net-website-windows-service-and-more/931600#9316000Answer by Alexander for How do I create an installer for a .Net website, Windows Service, and more???Alexander2009-05-31T07:58:18Z2009-05-31T07:58:18Z<p>As my previous speakers already sayed i also would recommend you to use <a href="http://wix.sourceforge.net/" rel="nofollow">WiX</a>. Visual Studio (till version 2008) also has a proprietary built-in installer system. But i would avoid using it, because you need to use the full Visual Studio IDE to compile it. You cannot use command line build scripts, and therefore it is useless when working with a automated build server.</p>
<p>WiX gives you all the flexibility you might need. And as far as i know, Microsoft will use it as standard installer tool in Visual Studio 2010.</p>