This website uses cookies. By clicking Accept, you consent to the use of cookies. Click Here to learn more about how we use cookies.
Turn on suggestions
Auto-suggest helps you quickly narrow down your search results by suggesting possible matches as you type.
- Revenera Community
- :
- InstallShield
- :
- InstallShield Forum
- :
- Uninstall code for InstallScriptMSI project
Subscribe
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Subscribe
- Mute
- Printer Friendly Page
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
Feb 16, 2010
04:49 PM
Uninstall code for InstallScriptMSI project
I have custom code to implement during an 'uninstall' of my product. Can anyone tell me where I can put my custom code for an InstallScriptMSI project?
I have tried putting it in the DefaultFeature_UnInstalling() function...but it doesn't seem to be calling that.
Thanks for any help on this.
I have tried putting it in the DefaultFeature_UnInstalling() function...but it doesn't seem to be calling that.
Thanks for any help on this.
(1) Reply

Not applicable
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
Feb 16, 2010
10:32 PM
Update “UNINSTALL_STRING” variable with your won value;
Example;
function OnBegin()
begin
UNINSTALL_STRING = "c:\\youruninstallpath";
end;
Example;
function OnBegin()
begin
UNINSTALL_STRING = "c:\\youruninstallpath";
end;
