up vote 1 down vote favorite
share [g+] share [fb]

My NSIS installer creates Start Menu links to run and uninstall my application.

Using NSIS, how do I create StartMenu shortcut to open a folder in Windows Explorer?

link|improve this question

feedback

1 Answer

up vote 2 down vote accepted

the same as any other shortcut

CreateShortcut "$smprograms\my app\my shortcut.lnk" "c:\path\to\folder"

this is explorer 99% of the time, and its really what you want, but if you want to force explorer

CreateShortcut "$smprograms\my app\my shortcut.lnk" "$windir\explorer.exe" '/e,"c:\path\to\folder"'

but that shortcut will have the wrong icon etc

link|improve this answer
Thanks. It turns out I had a typo in my path. – Mark Beckwith May 21 '09 at 0:01
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.