The knowledge base is no longer actively updated, we have moved all content to our Community Support Forum

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" />
     <deleteFile>
           <path>${installdir}/mysql/data</path>
           <ruleList>
               <compareText text="${remove_mysql}" value="yes" logic="equals" />
           </ruleList>
     </deleteFile>
 </preUninstallationActionList>