Archive: quick launch folder


quick launch folder
After creating the quick launch shortcut I want the uninstaller to also know how to remove it.

How would I get the quick luanch folder?

Would if be similar the start menu shortcut deletion code below?

************
!insertmacro MUI_STARTMENU_GETFOLDER Application $R0

Delete "$SMPROGRAMS\$R0\${STARTMENU_LINK_APP_NAME}.lnk"
Delete "$SMPROGRAMS\$R0\${STARTMENU_LINK_APP_UNINSTALL}.lnk"
Delete "$SMPROGRAMS\$R0\${STARTMENU_LINK_APP_HELP}.lnk"

;Delete empty start menu parent diretories
StrCpy $R0 "$SMPROGRAMS\$R0"

RMDir $R0
************

Thank you,


Please post these questions in a single topic rather than creating many of them.

The QuickLaunch folder is stored in the constant $QUICKLAUNCH!

-Stu