Inno setup [icons] 部分,如果桌面图标不存在,则创建它

发布于 2024-10-12 21:39:19 字数 277 浏览 5 评论 0原文

我们使用 inno setup 来创建安装程序。我们在脚本中使用它:

[Icons]
Name: {commondesktop}\{#Brand}; Filename: {app}\{#Brand}.exe; Tasks: MYAPP; WorkingDir: {app}

创建桌面。效果很好。 但现在,我们只想创建桌面快捷方式(如果桌面快捷方式尚不存在)。我想我必须使用 if 语句,但似乎“if”在 [Icons] 部分中未被识别。 有办法做到吗? 谢谢 詹姆斯

we use inno setup to create installer. We use this in our script:

[Icons]
Name: {commondesktop}\{#Brand}; Filename: {app}\{#Brand}.exe; Tasks: MYAPP; WorkingDir: {app}

to create a desktop. it worked fine.
But now, we want to only create the desktop shortcut if it's not already there. i guess somehow i have to use the if statement, but seems like "if" is not recognized in the [Icons] section.
is there a way to do it?
Thanks
James

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

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

发布评论

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

评论(1

枫以 2024-10-19 21:39:19

使用 Check 参数来测试快捷方式文件是否存在。

Use a Check parameter that tests for the existence of the shortcut file.

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