vote up 6 vote down star
1

I'm a web-guy stuck in "application world" in VS 2005. I created my windows forms program and want to give my end users the ability to install it (and some of it's resources) into a standard Program Files/App Directory location along with a start menu/desktop launcher.

The help files don't give any instructions (that I can find). This seems like such a trivial task to create an installer - but it's eluding me.

Any hints would be greatly appreciated!

flag

8 Answers

vote up 12 vote down check

You're looking for a "Setup Project" which should be under the "Other Project Types" -> "Setup and Deployment" category in the "New Project" dialog.

link|flag
vote up 1 vote down

Add a "Setup Project" project to your solution. New Project > Other Project Types > Setup and Deployment. You can then choose what is installed and where.

link|flag
vote up 0 vote down

The Setup Project is the way to go. If you're going to be deploying the installer from a web site, I recommend creating an MSI file as the project output (as opposed to a Setup.exe output). Most of my clients block the download of EXE files.

link|flag
vote up 4 vote down

Another option is Inno Setup, a third-party installer which is free, easy to use and excellent:

Inno Setup

link|flag
Great recommendation. Very solid product and support community. I used to use it quite often. – joseph.ferris Dec 21 '08 at 0:34
vote up 6 vote down

I would suggest using something WiX (windows installer XML). Its the toolkit most products from codeplex or OOB code drops use, and its pretty easy to get the hang of.

There's also (in version 3) an IDE add-in called Votive to help make things 'easier'.

Personally I find using WiX more flexible then using the built in Visual Studio installer template, though your means might vary. Take a look at http://wix.sourceforge.net/ and there's also a great tutorial at http://www.tramontana.co.hu/wix/.

If it seems kind of hard to start off with, persevere - I did and now I find it perfect for what I need.

link|flag
1  
I support this answer : WiX is way much powerful than VS Setup projects, and even more simpler to use. – Romain Verdier Sep 22 '08 at 8:36
1  
+1. WiX is awesome and way easier to work with than the setup projects. – Gabriel Isenberg Dec 20 '08 at 23:12
vote up 1 vote down

I'd like to add a quick start tutorial for the 'Setup Project' as a good place to start with building your own setup with VS: http://www.codeproject.com/KB/dotnet/Win_App_Setup_Project.aspx

link|flag
vote up 1 vote down

This video shows how to setup a Simple Installer using Visual Studio 2005

link|flag
vote up 0 vote down

To create installer in Inno Setup you need script file. If you don't know how to do that try http://www.actualinstaller.com

link|flag

Your Answer

Get an OpenID
or

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