Is it possible to perform custom actions during uninstall using InstallShield 2009

I need to trigger a custom action when uninstalling ManagedCode that is part of the installation (before uninstalling during uninstallation) Is this possible in Install Shield 2009?

+1


source to share


2 answers


Yes. You can run a custom ManagedCode action as part of the uninstall. You just need to execute its sequence in Exec Sequence with condition REMOVE="ALL"

. InstallShield is just a wrapper around Microsoft's MSI technology, so many times it is best to use MSDN to understand what you want to do. For example, this post will help you plan your action, http://msdn.microsoft.com/en-us/library/aa371626(VS.85).aspx



+3


source


At least in my IntallShield Express 11, I can have separate Uninstall activities in several different places.



0


source







All Articles