nsis:如何创建开始菜单快捷方式来打开文件夹?

发布于 2024-07-22 05:54:24 字数 120 浏览 6 评论 0原文

我的 NSIS 安装程序创建“开始”菜单链接来运行和卸载我的应用程序。

使用 NSIS,如何创建 StartMenu 快捷方式以在 Windows 资源管理器中打开文件夹?

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?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

甜是你 2024-07-29 05:54:24

与任何其他快捷方式相同,

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"'

但该快捷方式将具有错误的图标等

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

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文