在 NSIS 中最小化快捷方式运行

发布于 2024-07-25 04:43:12 字数 154 浏览 10 评论 0原文

在 Windows 中,可以编辑快捷方式的属性,并选择它是否应正常、最小化或最大化启动目标程序的窗口。

我正在 NSIS 中创建一个安装程序,并且有一些批处理文件,我想为其创建快捷方式并让它们最小化。 有谁在 CreateShortcut 中包含哪些参数来实现此目的吗?

In Windows, one can edit a shortcut's properties and choose whether it should start the target program's window normally, minimized, or maximized.

I'm creating an installer in NSIS, and there are some batch files to which I would like to create shortcuts and have them start minimized. Does anyone what parameters to include in CreateShortcut to accomplish this?

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

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

发布评论

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

评论(1

弱骨蛰伏 2024-08-01 04:43:12

以下是启动最小化目标的快捷方式的一个非常基本的示例。 空字符串用于本示例中忽略的其他参数。 有关详细信息,查看参考

CreateShortCut "MyShortcut.lnk" "MyProgram.exe" "" "" "" SW_SHOWMINIMIZED

The following is a very basic example of a shortcut that starts the target minimized. The empty strings are for additional parameters that are neglected in this example. For more information, see the reference

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