up vote 2 down vote favorite
share [g+] share [fb]

VS 2008 SP1

I have created a application that I have installed on the user computer. However, I want the application to be self-updating. But I am not sure if this would really update the application.

The application will download all the files from the web server, and replace the files in the directory where the program as been installed to. The user will restart the application.

I am just want to be sure, because I can't replace the installed files with the updated ones. As the application will be running. So really the application cannot delete/replace itself.

So, I was thinking that I could download into another directory, if the program is installed in this directory 'program files/application/1.0.0' then I could download the files to 'program files/application/1.0.1'.

However, when the program restarts, how can it know that it has to execute from the 1.0.1 directory?

I can't use clickonce or the updater block for this.

Many thanks for any advice,

link|improve this question

ClickOnce has some of these features I think. – Daniel A. White Jul 30 '09 at 17:39
Why can't you use ClickOnce? – Inuyasha Feb 23 '10 at 20:52
feedback

7 Answers

up vote 1 down vote accepted

You can wrap the application with a small loader program which will do a version check. If it's out of date, download the newer binaries and overwrite the old ones. If you want to maintain all version you might end up with:

c:\program files\mycompany\myapp\loader (the newer version will point to the latest directory)
c:\program files\mycompany\myapp\v1.0
c:\program files\mycompany\myapp\v1.1

If it's on a LAN, you might be able afford the bandwidth of just re-downloading the binaries on start up instead.

link|improve this answer
Are there code sample that shows what you meant by wrapper that does version check and self-overwrite? – Antony Jul 24 '11 at 21:38
Sorry for the uber late reply. A quick example is you write a console application that has a config file that gets updated. It downloads from a central location. That config file can point to a directory and launch the appropriate application. You could make it more intelligent by having to "udpate" (aka delete) older stuff. – Nazadus Sep 2 '11 at 13:01
feedback

A good option is to make an independant Updater application.

The updater will download the newest version and kill/replace the old.

I think this is the best option, because you can execute the updater within the main appication (so you can say that it´s self-updating), or directly by the user with a shortcut.

The updater can check if the application is running and ask the user to exit the application or kill it by itself.

Forgive my english...

Good luck

link|improve this answer
feedback

All of that is already done for you if you use ClickOnce deployment (Project properties, Publish).

link|improve this answer
roboUK mentioned that ClickOnce isn't an option. – Nazadus Jul 30 '09 at 17:55
For this application, I cannot use clickOnce. Any other ideas would be most welcome. – ant2009 Jul 30 '09 at 18:19
feedback

Use Windows Installer for the installation and updating. If you sign your installation packages the user can update your application without needing any administrator privileges.

I've made a website and an application that demonstrates the functionality of what you want on my website.

link|improve this answer
feedback

Wix Clickthrough might meet your needs: http://wix.sourceforge.net/clickthrough.html

link|improve this answer
feedback

I would look into ClickOnce. It can be configured multiple ways, to check for updates before the application runs, to download from the server each time it's run, or check for updates after the application has started.

I have done ClickOnce Deployment and an independent updating application, they both work well. You obviously will have more flexibility over an updating application that you create yourself, however tho, ClickOnce can also be configured to install prerequisites such as the .NET Framework, Windows Installer, etc... for your application to run.

link|improve this answer
feedback

Let me start by saying we offer a complete updating solution which includes:

wyUpdate handles all of the Vista/Windows 7 UAC problems and all the file permission problems that inevitably pop up when you're trying to update complex software.

That being said, if you want to build your own updater here are some tips:

Building your updater

A good place to start is the wyUpdate C# source code I mentioned above. You can cannibalize it and use it for your own purposes. Some of the algorithms it contains:

  • Full Windows Vista / Windows 7 UAC support
  • Ability for limited users to check and then update if they have credentials
  • Support for wonky corporate inernet. (If you've ever worked with a corporation this is a real problem).
  • Quick extracting, patching, and installing of files.
  • Registry support.
  • Roll back files & registry on error or cancellation by the user
  • Self-update

We have the file specifications here.

Automatic updating

Since being automatic is a requirement let me tell you how we do it with our AutomaticUpdater control.

We use named pipes to communicate between the standalone updater (wyUpdate) and the Automatic Updater control sitting on your program's form. wyUpdate reports progress to the Automatic Updater, and the Automatic Updater can tell wyUpdate to cancel progress, to start downloading, start extracting, etc.

This keeps the updater separate from your application.

In fact, the exact named pipes C# code we use is included in an article I wrote a little while back: Multi-process C# app like Google Chrome.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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