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

Uninstall


1 reply to this topic

mindylchen

mindylchen
  • Members
  • 2 posts

Posted 25 February 2002 - 18:04

During installation, I moved over .jar file, then unzip the jar file. The problem is, during uninstall, I want to remove those unzipped files. But I couldn't do it because it is not moved over directly. Is there any way to remove those files

Taco Bell

Taco Bell

    IS6 Expert

  • Moderators
  • 1,281 posts

Posted 25 February 2002 - 23:18

Since you're probably using the event-based model, simply add the necessary delete file commands to the OnMaintUIBefore( ) function just after the following commands:

   switch(nType)
       case REMOVEALL: ComponentRemoveAll();

If this function doesn't exist, you can add it via the drop down function lists of "Before Move Data" and "Maintenance UI Before".

Hope it helps.