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:
http://img140.imageshack.us/my.php?i...oftwarehk3.jpg
Archive: Making an Icon for Sytem Control-->Software
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:
http://img140.imageshack.us/my.php?i...oftwarehk3.jpg
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
That's what I've done, but it dosen't shows any change.
Here's my script:
Icon "full2.ico"
UninstallIcon "full2.ico"
Take care of the other lines too...
THX Works great :D