Inno setup [icons] 部分,如果桌面图标不存在,则创建它
我们使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用 Check 参数来测试快捷方式文件是否存在。
Use a Check parameter that tests for the existence of the shortcut file.