cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
pmatlock
Level 6

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.
Labels (1)
0 Kudos
(1) Reply
Not applicable

Update “UNINSTALL_STRING” variable with your won value;

Example;
function OnBegin()
begin
UNINSTALL_STRING = "c:\\youruninstallpath";
end;
0 Kudos