vote up 1 vote down star
2

I need to create an installer program that will do install the following:

  1. ASP.Net Website
  2. Windows Service
  3. SQL Express if it isn't installed and the user doesn't have a SQL Server
  4. Dundas Charts
  5. ASP.Net AJAX v.1.0
  6. ReportViewer control (for 2.0 Framework)
  7. Check Framework prerequisites (2.0)
  8. Configure IIS and app.config (data connection strings, etc.)

Is it realistic to be able to do this with a VS Setup Project? Or, should I be looking at other install tools?

flag

50% accept rate

4 Answers

vote up 5 vote down check

You can use WiX

link|flag
vote up 0 vote down

As my previous speakers already sayed i also would recommend you to use WiX. 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.

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.

link|flag
No they won't. WiX was going to be part of VS2010, but no longer - robmensching.com/blog/posts/… – blowdart May 31 at 8:00
vote up 2 vote down

Most of the best open source tools and programs for Windows are distributed using NSIS

ASP.Net Website ( no listing - bug in stackoverflow - code not formatting while list above .. )

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\*.*"
link|flag
vote up 0 vote down

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.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.