1

hey guys, i have a .net windows based application, now once i give the application to the client, is there any way i can update the application given to the client through internet, i mean i have a website, whenever client run my application, application should first take updates from the url specified and then it should start, so that i dont have to go to client everytime for any updations, is there any way like this..

Abbas
  • 4,948
  • 31
  • 95
  • 161

4 Answers4

3

Your problem might be solved using ClickOnce Deployment.

Sanjeevakumar Hiremath
  • 10,985
  • 3
  • 41
  • 46
1

Google ClickOnce. Pretty easy to work with.

Ilya Smagin
  • 5,992
  • 11
  • 40
  • 57
0

Making a dotnet client application update itself over internet can be done in two ways (i know of)

Microsoft has something they call clickonce that, IIRC, works over internet.

It isn't that hard to roll your own though. You have a startup exe which does the checking and downloads a new main exe when needed. HTH

LosManos
  • 7,195
  • 6
  • 56
  • 107
0

If you do not want to use ClickOnce you can have a look at codeplex NetSparkle AutoUpdate for .NET, a class library that handles this for you.

k3b
  • 14,517
  • 7
  • 53
  • 85