vote up 12 vote down star
6

On the Mac there's a really nice library called Sparkle that programs can use to implement the checking/install functionality for auto-updates.

Is there anything similar out there for .NET? Or just regular Win32?

Cheers,

flag

7 Answers

vote up 7 vote down

ClickOnce is my preferred method. It has some warts, but it comes with Visual Studio and works reasonably well.

link|flag
Thanks for your comment. I was under the impression that ClickOnce was only for non-installable per-user applications? – Andrew Grant Mar 27 at 22:21
It's only for per user apps... – Kalmi Mar 27 at 22:34
No, it is primarily for installed apps as well. It can be quite flexible if you take the time to learn it. – Jonathan Allen Mar 31 at 5:45
per user only! "If you need to install / upgrade for all users on a PC, Clickonce is not an option. Clickonce is meant for installing an application for a single user without administrative rights." See: stackoverflow.com/questions/276916/… – Kalmi Aug 16 at 15:28
vote up 4 vote down

Click-once is heavily used but you can do what I did for a large application and try these:

Application Auto Update in VB.NET

Application Auto Update Revisited

I tinkered with the logic a bit and built what I thought was a better XML update file. Now, when I need to update the clients, I just post the new exes or dlls and set the correct versions in the public XML file. My app detects the newer versions if it is older and updates itself. If youare doing this on Vista, you need to prompt for Admin permissions so that Program Files can be written to (if you install there)

You can also easily convert this to C# using this:

C#/VB.NET Converter

link|flag
This is what I do also. – Cheeso Mar 28 at 22:37
vote up 4 vote down

Click once has it's own security limitations (understandbly so). If you want the full power and control of a windows app then go with the .net application updater component. It works like a charm and has even been used by ms internally for their .net based game (don't remember the game name though)

Here is the link for more info - http://windowsclient.net/articles/appupdater.aspx

link|flag
vote up 2 vote down

There is a really nice utility here called Updater. Look like it is written in c or c++. I have been able to configure the xml files and load them to the production server, and then I can have the Updater Run and check the xml file for a different version and download a new update install package that I built using the Nullsoft Scriptable Install System.

link|flag
vote up 0 vote down

We investigated a handful of options and decided to use AppLife Update.

AppLife Update can quickly and easily add auto update functionality for your .NET apps but is also flexible because of it's comprehensive API.

See the full list of features and some demo videos on their website.

link|flag
vote up 1 vote down

I think WyBuild is good Sparkle alternative )

link|flag
vote up 1 vote down

Dot Net Auto Update

I've implemented a library to do this called DotNetAutoUpdate (original name eh?). It aims to be:

  • Simple to use
  • Simple to setup
  • Secure
link|flag

Your Answer

Get an OpenID
or

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