Adding unistall information using Inno Setup

I use Inno Setup to create an installer for my program, but I want to add an icon and change some of the information displayed on the control panel ("Add or Remove Programs"). I know that Inno Setup adds a registry key to get the program that is listed first, so I wondered if it could be expanded in any way so that at least my icon would appear in the list!

Thanks in advance

+5
source share
1 answer

To change the icon displayed in the Add or Remove Programs applet program list, specify the UninstallDisplayIcon directive in [Setup] .

 [Setup] UninstallDisplayIcon={app}\Application.exe 

If you want to specify a user name for recording a program in the Add or Remove Programs applet, then specify the UninstallDisplayName directive in [Setup] .

 [Setup] UninstallDisplayName=Custom name shown in Add/Remove Programs applet 
+10
source

All Articles