使用 Inno Setup 自定义桌面图标
我的Inno设置文件中有以下内容,该文件创建了一个桌面图标没有问题:
Name: "desktopicon"; Description: "{cm:CreateDesktopIcon}"; \
GroupDescription: "{cm:AdditionalIcons}"
但是,启动程序的主文件是VBS文件而不是EXE。我想在快捷方式上有一个不错的图标,而不是vbscript的图标,但找不到更改图标的选项。
是否可以使用这样的选项来设置自定义图标?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
INNO设置有助于
[ICONS]
部分说:(来源)
希望有所帮助。
The Inno Setup help about the
[Icons]
section says:(source)
Hope that helps.
您粘贴了 [任务] 条目,而 [图标] 条目创建了实际的图标。
为此,您需要安装自定义图标文件,并设置 IconFilename(以及可选的 IconIndex)参数。
You pasted the [Task] entry whereas the [Icons] entry is what creates the actual icon.
For that, you want to install a custom icon file, and set the IconFilename (and optionally IconIndex) parameter.
在使用Inno设置之前,请使用Windows平台更改.EXE图标。更改后,然后使用Inno,然后您的.exe文件成为您在使用Inno之前更改的图标。
换句话说:Inno设置使用默认图标作为.EXE图标启动,因此您可以在使用Inno之前更改图标。它对我有用。
Before you use Inno setup, change the .exe icon with windows platform. After you change it then use Inno, and your .exe file becomes the icon that you have changed before using Inno.
In other words: Inno setup uses default icon to launch as a .exe icon, so you can change the icon before use Inno. It works for me.