在 Windows 中,您在哪里分配 .ico 文件以显示程序的 Unisntall(在“添加/删除程序”中)?
我想指定一个图标以显示在 Windows 添加/删除程序中我的应用程序卸载程序旁边。
我认为这将在卸载程序的注册表设置中,但我没有看到一个明显的地方可以分配它。
I want to assign an icon to display next to my app's Uninstaller in the Windows Add/Remove programs.
I assume that would be in the Registry setting for the uninstaller, but I don' see an obvious place to assign that.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\YourProgramName\DisplayIcon
DisplayIcon
应该是REG_SZ
键,并且应该给出要使用的图标文件。HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\YourProgramName\DisplayIcon
DisplayIcon
should be aREG_SZ
key and should give the absolute path of the icon file to use.