Izpack installer configure uninstaller

I created the installer and uninstaller using izpack. The problem I am facing is when I cannot uninstall everything that I installed. I would like to configure my uninstaller according to my configuration, because I need to store the fees files and delete the rest when I run unisntaller. As long as I understand and learn about izpack, the default unistaller behavior is to remove everything that the installer has installed. So is there any way to configure the uninstaller and how to do it. Thanks

+3
source share
2 answers

Define uninstall = no under the package tag, the value of the uninstaller attribute gives you the freedom to choose a package using the uninstaller or split it. The following is sample code for this:

<pack name="Client Solution" required="no" uninstall="no">
+6
source

izpack is open source. Get its source and change the delete class.

-2
source

Source: https://habr.com/ru/post/1795413/


All Articles