Skip to content
⌘ NSIS Forum Archive

icon issues

12 posts

statblaster#

icon issues

i am setting the icon by using the following code:

Icon "bin\fuse.ico"

in both the installer and uninstaller. its 16 x 16, why am I getting the following error?


"Error finding icon resources: installer, uninstaller icon size mismatch - see the Icon instruction's documentation for more information -- failing!
Error - aborting creation process"
Freezerman350#
in general use this

!define MUI_ICON ".\graphics\Icone.ico"
!define MUI_UNICON ".\graphics\Icone.ico"
Yathosho#
make sure the icons have the same color-depth. you find help on this in multiple forum-posts, just use the search feature.

Originally posted by Freezerman350
in general use this

!define MUI_ICON ".\graphics\Icone.ico"
!define MUI_UNICON ".\graphics\Icone.ico"
not correct, this syntax is only used for installers with MUI.
statblaster#
icons

im using the same icon for both. theres no reason why it wouldnt match itself. any suggestions?
statblaster#
of course, here you go...
statblaster#
that worked, thank you sir. I didnt have the UninstallIcon in the uninstall section, just had Icon.

my b.