Inno Setup: Control panel icon does not show Inno Setup: Control panel icon does not show windows windows

Inno Setup: Control panel icon does not show


Solution is:

Add

[Setup]UninstallDisplayIcon={app}\{#MyAppExeName}

Specifying the actual ico file did not work, but this entry did.

I tested against Windows 8/8.1. Windows 7 works without this line.


I can confirm this as a working solution too (Win7 x64):

[Setup]UninstallDisplayIcon={uninstallexe}

What I really love here it's independent to app name etc. Just pure alias to uninstaller.

Found at https://dutchgemini.wordpress.com/2011/05/03/innosetup-and-the-missing-uninstall-icon-on-windows-7


Add

It should be

UninstallDisplayIcon= {app}ForwardSlash{#MyAppExeName}

I tested it against Windows 10 latest build.