简体   繁体   中英

WiX installer - Update scenario Custom UI

For my application I have an .msi developed with WiX. For the update scenario I want to do the following:

  • if the installed version is never than the update version display an error

  • if the installed version is older than the update version show a button with text Update

  • if the installed version is the same as the update version show a button with text Repair

I have found how to define custom UI dialogs, but if I create a dialog with all these controls (Error label, Update/Repair buttons) how can I display just the appropriate one according to the situation.

Use the Upgrade property.

Assuming

<Product Version="1.0.0.0" />

and

<Upgrade Id="GUID">
  <UpgradeVersion OnlyDetect="no" Property="OLDERFOUND" Maximum="1.0.0.0" IncludeMaximum="no" />
  <UpgradeVersion OnlyDetect='yes' Property='NEWERFOUND' Minimum="1.0.0.0" IncludeMinimum='no' />
  <UpgradeVersion OnlyDetect='yes' Property='SAMEFOUND' Minimum="1.0.0.0" Maximum='1.0.0.0' />
</Upgrade>

The first upgradeversion finds all versions upto the current one

the second line finds all versions above the current one

the third line finds installed versions the same as the current one

Then use a custom action like so

<CustomAction Id='NewerFound' Error='A later version of [ProductName] is already installed' />
<InstallExecuteSequence>
    <Custom Action='NewerFound' After='FindRelatedProducts'>NEWERFOUND</Custom>
    <RemoveExistingProducts After="InstallInitialize" />
</InstallExecuteSequence>

etc

The custom actions shown either removes the older version automatically or it warns the user that a newer version is already installed, but if you want to prompt the user then you can show your custom UI instead of running the CAs.

Personally I just use the first two upgradeversion lines. This does the automatic upgrade if an older one is found, shows the user an error if there is a newer one and, if the same one is installed it shows the user an error ( it does that by default it doesnt require the third line), however this doesnt give you the UI like you want, so as I said above try replacing these CAs with your UI.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM