Check for new versions

  • Thread starter Thread starter HIK
  • Start date Start date
H

HIK

Can someone point me in the direction of a routine that checks for a
newer installation package (msi file), and if it finds one, installs it?

thanks
Haim
 
Hi Haim,
Can someone point me in the direction of a routine
that checks for a newer installation package (msi file),
and if it finds one, installs it?

Unlike a ClickOnce deployment application, the application which is
installed by a msi package does not have the functionality to check its
update and install it automatically. There isn't a standard routine to do
this task.

You need to manually implement such functionality--integrate it with your
application or deploy another application (e.g. a vbscript program) with
the following steps:

Search the upgrade package's site or location.
Compare its version information with your current application.
Exit the current running application, download the upgrade package and
install it.

Thanks!

Thanks!

Best regards,

Gary Chang
Microsoft Community Support
======================================================
PLEASE NOTE the newsgroup SECURE CODE and PASSWORD will be updated at 9:00
AM PST, February 14, 2006. Please complete a re-registration process by
entering the secure code mmpng06 when prompted. Once you have entered the
secure code mmpng06, you will be able to update your profile and access the
partner newsgroups.
==================================================
When responding to posts, please "Reply to Group" via your newsreader so
that others may learn and benefit from your issue.
==================================================
This posting is provided "AS IS" with no warranties, and confers no rights.
 
Back
Top