views:

29

answers:

1

Guys how can I implement a web installer for my application?

+1  A: 

You probably want to look into ClickOnce deployment:

http://msdn.microsoft.com/en-us/library/t71a733d(VS.80).aspx

You can publish your application to a web server from Visual Studio, or you can publish to a folder and copy the files to another destination.

fletcher