我的NSIS安装程序创建了开始菜单链接以运行和卸载我的应用程序。
使用NSIS,如何创建StartMenu快捷方式以在Windows资源管理器中打开文件夹?
答案 0 :(得分:8)
与任何其他快捷方式相同
CreateShortcut "$smprograms\my app\my shortcut.lnk" "c:\path\to\folder"
这是探险家99%的时间,它真的是你想要的,但如果你想强迫探险家
CreateShortcut "$smprograms\my app\my shortcut.lnk" "$windir\explorer.exe" '/e,"c:\path\to\folder"'
但该快捷方式会有错误的图标等