2

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?

Inno Setup Task Manager Setup.tmp Description

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?

Robert Wigley
  • 1,917
  • 22
  • 42

1 Answers1

2

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
}
}

Setup name

Martin Prikryl
  • 188,800
  • 56
  • 490
  • 992