问题描述
我已经怀疑不可能并且可能会对其进行硬编码,需要修改Inno Setup源代码,但是Inno Setup非常灵活,所以也许有办法吗?
是否可以将与Setup.exe一起运行的Setup.tmp的"Windows任务管理器描述"字段中显示的内容从"Setup \ Uninstall"更改为其他内容?
我已经检查了这是否是可以修改的默认消息之一.
如果我怀疑直接在Inno Setup中无法实现,则会使用
I already suspect it is not possible and likely to be hardcoded, requiring modification of the Inno Setup source code, however Inno Setup is extremely flexible, so maybe there is a way?
Is it possible to change what is displayed in the Windows Task Manager Description field for Setup.tmp that runs with Setup.exe, from 'Setup\Uninstall' to something else?
I have already checked if this is one of the default messages that can be modified.
If not possible directly in Inno Setup, as I suspect, would modifying the resources with something like Resource Hacker or Resource Tuner make this possible? Alternatively, is there another esoteric way of doing this without modifying the Inno Setup source code?
You have to edit the "Version Info" of the Setup.e32
using a tool like Resource Hacker.
1 VERSIONINFO
FILEVERSION 51,1052,0,0
PRODUCTVERSION 0,0,0,0
FILEOS 0x4
FILETYPE 0x1
{
BLOCK "StringFileInfo"
{
BLOCK "000004B0"
{
VALUE "FileDescription", "Setup/Uninstall of My Program"
VALUE "FileVersion", "51.1052.0.0"
}
}
BLOCK "VarFileInfo"
{
VALUE "Translation", 0x0000 0x04B0
}
}
这篇关于Inno安装程序更改Setup.tmp的任务管理器说明的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!