vote up 9 vote down star
11

Hi gents, I've been thinking of rolling my own code for enabling my Delphi application to update seamlessly as I'll be going for "release often, release early" mentality furthermore. There are various Delphi solutions both freeware or paid out there and I'd like to ask if you've been using any of them or simply went on with your own solutions in this area? Any comments on the auto-update topic welcome. TIA.

flag

9 Answers

vote up 6 vote down check

Years ago I wrote a simple tool which is started instead of the real program, checks for updates, loads and installs them (if any are available), and finally starts the real application.

There are however problems with that approach if your program works in a properly administered environment, where users normally don't have write access to the program directories. You can no longer simply update your own program in such environments. That's why a lot of programs these days come with their own updater tool, which can be installed to run with elevated permissions, so that program updates can be applied even though only standard users do ever log on to the system.

You have to decide whether your target audience can be assumed to run on power user or administrator accounts, or whether you will have to deal with above-mentioned problems. With Vista things got considerably harder already.

With all these problems (net access over proxies, missing write permissions for installation directories, the need to update files that the updater itself is using - just to name a few) I wouldn't try again to code this on my own. Much better to check if any one of the available solutions does all you need it to.

link|flag
vote up 3 vote down

Normally we use the third party tool. But in some situations it was not usable so I created an own solution, which was pretty standard:

  • Get xml (or any other format) with update info.
  • If newer files are published, download and install them.
link|flag
vote up 3 vote down

I created my own solution too based on Indy for downloading and http://sourceforge.net/projects/makeupdate/ for file patching. Before that I have used and tried several commercial tools, but no one was doing exactly what I needed.

link|flag
vote up 4 vote down

I use the Synapse routines GetHTTP to return a specific resource, and if found then check against the local system to see if an update is required. If so then the resource tells me what page to go to launch and I throw the URL into shell execute so the users preferred browser is displayed.

Most of the time the download is a setup program created by InnoSetup which updates the users system and database to the latest version. When a new "paid" upgrade is needed, I then send the user to a "purchase upgrade" form. My web resources are ASP pages, so I can redirect to a different resource based on the customers version number.

For the main application (our application has a server piece, and a client piece) I have a loader which will check the server to see if the version of the client file on the server is different than the version on the client...if so, it prompts the user if the user wants to update/revert. We chose to prompt the user as sometimes an accidental bug might make it into the system and the user has to downgrade/upgrade only specific machines to help troubleshoot. I maintain a database record with the minimum version required which is updated via the database patch, so if a version must be retired then the record is updated accordingly.

link|flag
vote up 7 vote down

What ever scheme you use, it may be handy to know that you can actually rename a running .exe file. So rename file, copy in new file works nice. And the next time someone launch the program they will launch a the new version. This is ofcourse very handy in enviroment where many users run the same .exe file, like in citrix/terminal server/network share cases.

link|flag
vote up 2 vote down

I use TWebUpdate . It works ok and has a ton of interesting options, but documentation isn't so great and I did bump into a few problems - which is why I download a full installer, instead of just the files...

I will be keeping an eye on this question, btw...

link|flag
I use TWebUpdate, too. stg says it all - it works, but the docs could be a LOT better. The online support via their newsgroups and support email is good, however. It's cheap enough that you can afford to try it out and see whether it's good enough while you're adding other functionality. – GuyWithDogs Nov 10 '08 at 19:34
vote up 1 vote down

I use TmxWebUpdate. It's free, simple and gives you good control over the process. I actually own TMS Component Pack with TWebUpdate but never really found a good reason to switch.

link|flag
vote up 1 vote down

Same as "stg" and "GuyWithDogs", I'm using TWebUpdate from TMS. Although the documentation isn't so great, Its not so difficult to learnt.

With TWebUpdate, you have some options what the protocol you use, it could be done via HTTP, FTP or network access.

For communication layer, TWebUpdate uses WinInet. In some machines, the windows / IE URL cache can be frustating, so I've added a routine to clear the auto-update server address from cache first to ensure the information gathered from the server is up-to-date.

link|flag
vote up 0 vote down

We rolled our own as well. Its really not too difficult.

Our process goes something like:

  • When the main app is launched, it checks (using funcs from the synapse library) if there's an update available (assuming its configured to check, of course).

  • If so, it notifies the user and askes if they want to update.

  • If they do, it launches an updater .exe, and closes the main app.

  • The updater exe downloads the new files based on the contents of a text file it retrieves, keepiing the files in memory.

  • When the updater is done downloading everything correctly, it then saves the downloaded files to disk, backing up any files it replaces. This way if the download gets interupted, you dont end up with half the files installed.

  • Finally, it launches the main app again, and closes itself.

The trick w/ Vista is that you need to have an entry in the updater program's manifest to force it to run with administrator rights.

link|flag

Your Answer

Get an OpenID
or

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