When QuickInstaller uninstalls a product, it will call the uninstall() function in Extensions/Install.py if it exists.
It's not always possible to uninstall a product, depending upon what it did when it was installed. Installation often changes to your Zope database. If this is something such as adding a new skin, then the uninstall method can simply delete the skin. But if a change as made to shared configuration, such as modifiying some already set properties, then uninstall cannot always assume that it is not stomping on some other configuration changes. You could try and set a property back to the 'default' but that property may have been configured before your change to something other than the default ... -- View this message in context: http://www.nabble.com/How-do-you-*uninstall*-a-GenericSetup-product--tf4719806s15482.html#a13504199 Sent from the Installation, Setup, Upgrades mailing list archive at Nabble.com. _______________________________________________ Setup mailing list [email protected] http://lists.plone.org/mailman/listinfo/setup
