Skip to content
⌘ NSIS Forum Archive

Why can't i use 256 color icon ?

3 posts

cooladn#

Why can't i use 256 color icon ?

hi!
Why can't i use a 32x32 256 color icon ?
i've always this type of error
"Finding icons offsets for uninstaller...
generate_unicons_offsets: installer, uninstaller icon size mismatch -- failing!"

This is a part of my script :
Icon def256.ico
UninstallIcon def256.ico
kichik#
If using the MUI use:
!define MUI_ICON def256.ico
!define MUI_UNICON def256.ico
Also upgrade to b1 if you are using b0.
Joost Verburg#
Your install and uninstall icons should include exactly the same formats, for example:

256 colors, 16x16
256 colors, 32x32

etc.