VMware Cloud Community
clairealex7
Enthusiast
Enthusiast

Add some text on Installation complete dialog

Hello

I would like to add some text on the Installation Complete page. I cannot see a way in the documentation.

Does anybody know how I can do this?

Thank you,

Claire

0 Kudos
2 Replies
michieldhont_
Hot Shot
Hot Shot

Hi @clairealex7,

You can add a custom language file to the project:

<project>
...
<customLanguageFileList>
<language>
<code>en</code>
<file>custom-en.lng</file>
</language>
</customLanguageFileList>
...
</project>


And then you change the built in string as follows:

 

Installer.Installation.Finished.Text= %1 has been installed.


You can also use variables:

Installer.Installation.Finished.Text=Setup has finished installing ${your_variable} on your computer.


Which you can set in the project:

<postInstallationActionList>

<setInstallerVariable>
<name>your_variable</name>
<value>your_value</value>
</setInstallerVariable>

</postInstallationActionList>


You can find more information in the following section of our userguide:

https://clients.bitrock.com/installbuilder/docs/installbuilder-userguide.html#built_in_strings 

Regards,

Michiel

 

0 Kudos
clairealex7
Enthusiast
Enthusiast

Thank you so much! This is exactly what I needed 😀

0 Kudos