Problem deleting desktop shortcut
I'm using NSIS20b3 and Modern UI. I'm creating a desktop shortcut like so:
CreateShortCut "$DESKTOP\Freelancer Mod Manager.lnk" \
"$INSTDIR\FLModManager.exe" "" \
"$INSTDIR\FLModManager.exe" 0 'SW_SHOWNORMAL' \
'' "Freelancer Mod Manager"
and deleting it in my uninstaller like this:
Delete "$DESKTOP\Freelancer Mod Manager.lnk"
The problem is, the shortcut is still there after the uninstaller exits! Is this a bug, or am I not doing something right?