61
edits
Changes
→Uninstall
===Uninstall===
<div style="margin-left: 30px">
'''exists''' - This checks for the existence of the particular Esto comprueba la existencia de un paquete de software package in the installation databaseen particular en la base de datos de instalaciones. If the package is foundSi el paquete se encuentra, the condition returns la condición devuelve ''true''.
</div>
<div style="margin-left: 30px">
'''versionsmallerthan''' - This checks for the existence of a Esto comprueba la existencia de un paquete en particular software package in the installation database and also checks the version of that la base de datos de instalaciones y también comprueba la versión de ese software package. If the package is found, and the version is smaller than the supplied valueSi se encuentra el pquete y la versión es más pequeña que el valor proporcionado, the condition returns la condición devuelve ''true''.
'''versionlessorequal''' - This checks for the existence of a particular software package in the installation database and also checks the version of that software packageidem. If the package is found, and the version is less than or equal to the supplied value, the condition returns truecon menor o igual...
'''versionequalto''' - This checks for the existence of a particular software package in the installation database and also checks the version of that software packageidem. If the package is found, and the version is equal to the supplied value, the condition returns truecon igual...
'''versiongreaterorequal''' - This checks for the existence of a particular software package in the installation database and also checks the version of that software packageidem. If the package is found, and the version is greater than or equal to the supplied value, the condition returns truecon mayor o igual...
'''versiongreaterthan''' - This checks for the existence of a particular software package in the installation database and also checks the version of that software packageidem. If the package is found, and the version is greater than the supplied value, the condition returns truecon mayor que...
</div>
<source lang="xml">
</source>
<source lang="xml">
</source>
<source lang="xml">
<check type="uninstall" condition="versiongreaterorequal" path="GIMP" value="2.6.6" />
</source>
===Execute===