How to remove shortcuts from start menu in NSIS?
I have created short cut menu using following code.
CreateDirectory "$SMPROGRAMS\myFolder"
CreateShortCut "$SMPROGRAMS\myFolder\app.lnk" "$INSTDIR\app.exe" "" "$INSTDIR\app.exe" 0
CreateShortCut "$SMPROGRAMS\myFolder\Uninstall.lnk" "$INSTDIR\Uninstall.exe" "" "$INSTDIR\Uninstall.exe" 0
The short cut folder created successfully.Also short cut menu created any of start menu folder.like games,accessories and etc,
I have included repair and remove option in this EXE.
PROBLEM:if the user install first time,he select short cut folder under accessories.same user run second time,he selects short cut folder under Games.Now run the uninstall.exe it was remove short cut folder only under the Games.The short cut menu still exists in accessories.How to remove all short cut folder in start menu?