Jump to content


This is a ready-only archive of the InstallSite Forum. You cannot post any new content here. / Dies ist ein Archiv des InstallSite Forums. Hier können keine neuen Beiträge veröffentlicht werden.
Photo

OnUninstall()


1 reply to this topic

ramalaks

ramalaks
  • Members
  • 19 posts

Posted 14 February 2006 - 22:30

I have added some custom code during uninstall in OnUninstall. it never gets called. why? it is 11.5 installscript project.

Quest7

Quest7
  • Full Members
  • 8 posts

Posted 28 February 2006 - 20:51

The OnUninstall event is called when the setup is run with the -uninst switch, in this case this is the only event that will be called.

That's copied straight from the comments above the function.

You may try adding your script to the OnMaintUIAfter with an if (REMOVEALLMODE) then statement.