cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 

InstallScript: Add Text to Uninstall Dialog

InstallScript: Add Text to Uninstall Dialog

Summary

This article shows how to add additional text to the Uninstall dialog

Solution

Within an InstallScript project navigate to Behavior and logic > InstallScript.

From the InstallScript dropdown, select After Move Data and OnMaintUIAfter.

The following script can be seen:

if(REMOVEALLMODE) then
szTitle = SdLoadString(IFX_SDFINISH_REMOVE_TITLE); -> This is the title of the uninstall final dialog ("Uninstallcomplete")
szMsg1 = SdLoadString(IFX_SDFINISH_REMOVE_MSG1); -> This is the string under the title

This is defined in \Program Files\InstallShield\2021\Script\ISRT\Include\_isres.h. Store custom strings in the project's string table and load these instead of the standard strings.

Additional Information

For additional information, see:

Was this article helpful? Yes No
No ratings
Version history
Last update:
‎Jun 20, 2023 09:32 AM
Updated by: