Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我的 NSIS 安装程序会创建开始菜单链接来运行和卸载我的应用程序。
使用 NSIS,如何创建 StartMenu 快捷方式以在 Windows 资源管理器中打开文件夹?
与任何其他快捷方式相同
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"'
但是那个快捷方式会有错误的图标等