66
edits
Changes
→Deploy Adobe AIR Applications
Uninstall is possible using msiexec /x {...} from Uninstall string.
=== Example ===
<source lang="xml">
<package id="MyTimer"
name="My Timer Adobe AIR application"
revision="%PKG_VERSION%"
priority="1">
<variable name="PKG_VERSION" value="0.1.0" />
<variable name="PKG_SOURCE" value="%SOFTWARE%\packages\AdobeAir" />
<check type="uninstall" condition="valuegreaterorequal" path="MyTimer" value="%PKG_VERSION%" />
<depends package-id="AdobeAir" />
<install cmd='%COMSPEC% /c if exist %PKG_SOURCE%\MyTimer.air %PKG_SOURCE%\AdobeAIRInstaller.exe -silent -desktopShortcut -programMenu %PKG_SOURCE%\MYTimer.air' />
<upgrade include="install" />
<downgrade include="install" />
<remove cmd="msiexec /qn /l* c:\netinst\logs\mytimer.log /x{796F2B0E-FB6D-B7AB-416B-xxxxxxxxxxxx}" >
<exit code="1605" />
</remove>
</package>
</source>
[[category:Silent Installers]]
[[Category:Adobe software]]