How can I ask a question in the uninstaller
| Author: BitRock Support Date: November 21, 2008 17:46 Tags: |
Actions
Uninstallation |
Although it is not possible to define parameters in the uninstaller, you can ask questions, as shown in the example below:
<preUninstallationActionList> <showQuestion text="Do you want the uninstallation to also remove the database data?" variable="remove_mysql"></showQuestion> <deleteFile> <path>${installdir}/mysql/data</path> <ruleList> <compareText text="${remove_mysql}" value="yes" logic="equals"></compareText> </ruleList> </deleteFile> </preUninstallationActionList> |