Skip to content
⌘ NSIS Forum Archive

Making an Icon for Sytem Control-->Software

5 posts

GHM#

Making an Icon for Sytem Control-->Software

How can I change the icon in NSIS that is shown in System Control-->Software (german: Systemsteuerung) ???

Here is an example of what I want to change:

LoRd_MuldeR#edited
UninstallIcon "MyUninstallerIcon.ico"

Section "-MakeUninstaller"
WriteUninstaller "$INSTDIR\Uninstall.exe"
WriteRegStr HKLM "SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\MyApplication" "DisplayName" "My Application (Uninstall only)"
WriteRegStr HKLM "SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\MyApplication" "DisplayIcon" "$INSTDIR\Uninstall.exe,0"
WriteRegStr HKLM "SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\MyApplication" "UninstallString" "$INSTDIR\Uninstall.exe"
SectionEnd
GHM#
That's what I've done, but it dosen't shows any change.

Here's my script:

Icon "full2.ico"
UninstallIcon "full2.ico"