使用 Inno Setup 自定义桌面图标

发布于 2024-12-05 06:59:49 字数 277 浏览 0 评论 0 原文

我的Inno设置文件中有以下内容,该文件创建了一个桌面图标没有问题:

Name: "desktopicon"; Description: "{cm:CreateDesktopIcon}"; \
    GroupDescription: "{cm:AdditionalIcons}"

但是,启动程序的主文件是VBS文件而不是EXE。我想在快捷方式上有一个不错的图标,而不是vbscript的图标,但找不到更改图标的选项。

是否可以使用这样的选项来设置自定义图标?

I have the following in my Inno Setup file which creates a desktop icon no problem:

Name: "desktopicon"; Description: "{cm:CreateDesktopIcon}"; \
    GroupDescription: "{cm:AdditionalIcons}"

However, the main file that launches the program is a VBS file rather than an EXE. I'd like to have a nice icon on the shortcut rather than the VBScript one, but can't find an option to change the icon.

Is there such an option available to set a custom icon?

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

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

发布评论

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

评论(3

你好,陌生人 2024-12-12 06:59:49

INNO设置有助于 [ICONS] 部分说:

iconfilename

自定义图标的文件名(位于用户的
系统)要显示。这可以是可执行的映像(.exe,.dll)
包含图标或.ICO文件。如果未指定此参数或
是空白的,Windows将使用该文件的默认图标。此参数可以
包括常数。

示例:
iconfileName **:“ {app} \ myicon.ico”

来源

希望有所帮助。

The Inno Setup help about the [Icons] section says:

IconFilename

The filename of a custom icon (located on the user's
system) to be displayed. This can be an executable image (.exe, .dll)
containing icons or a .ico file. If this parameter is not specified or
is blank, Windows will use the file's default icon. This parameter can
include constants.

Example:
IconFilename**: "{app}\myicon.ico"

(source)

Hope that helps.

千纸鹤带着心事 2024-12-12 06:59:49

您粘贴了 [任务] 条目,而 [图标] 条目创建了实际的图标。
为此,您需要安装自定义图标文件,并设置 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.

甜中书 2024-12-12 06:59:49

在使用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.

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