installer - NSIS CreateShortCut: Shortcuts order on Start menu -


i using nsis create installer 1 of apps, , using code create shortcuts on start menu:

;create start-menu items   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 

it works, uninstaller shortcut on start menu > myfolder appears before app.exe shortcut.

is there way control order of shortcuts?

usually installation order ignored, windows arranges them automatically. in older windows versions start menu has context menu option ordering them alphabetically, newer versions order them automatically.


Comments

Popular posts from this blog

linux - Mailx and Gmail nss config dir -

c# - Is it possible to remove an existing registration from Autofac container builder? -

php - Mysql PK and FK char(36) vs int(10) -