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

Simple Question - IS 7.0


2 replies to this topic

Travis2002

Travis2002
  • Members
  • 24 posts

Posted 07 August 2003 - 17:04

I have a simple install that will create a shortcut / icon in the Programs Menu pointing to INSTALLDIR.
But, when I choose to uninstall, the shortcut stays in the programs menu as well as the icon - still pointing to the INSTALLDIR location.

What do I have to do, so that it will remove the shortcut completely on uninstall?

Thanks

FYI - This is a Standard IS7 Project.
I am adding the shortcut by going into components > allotherfiles> shortcuts > start menu > programs menu.

.::Travis Mixon::.

jrcoldinmn

jrcoldinmn
  • Members
  • 16 posts

Posted 08 August 2003 - 14:17

Within the OnMaintUIAfter function, I put the following:
DeleteFolderIcon(FOLDER_DESKTOP, "App Name");
to get rid of the icon on the desktop. A similar call may satisfy your requirements.


Travis2002

Travis2002
  • Members
  • 24 posts

Posted 08 August 2003 - 21:05

Cool, but there is no icon on the desktop, only in the start > Programs area.
Same code?
.::Travis Mixon::.