Is it possible to change the window title bar of your installer using Inno Setup?

前端 未结 6 1011
日久生厌
日久生厌 2021-02-14 08:56

Is it possible to change the title bar of your installer using Inno Setup?

By default is:

AppName=My Program

and when you run the setup

6条回答
  •  庸人自扰
    2021-02-14 09:17

    A better solution (also if you want to make your iss setup file be correctly compilable on any computer) is to redefine the certain language string in Messages section after the definition of the Languages file.

    For example:

    [Languages]
    Name: de; MessagesFile: compiler:Languages\German.isl
    ;Name: en; MessagesFile: compiler:Default.isl
    
    [Messages]
    WizardReady=I am ready.
    

提交回复
热议问题