I would like to replace the default logo in my NSIS installer (see image below), but I cannot find anything about this on the internet. Can it be done?

enter image description here

link|improve this question

feedback

3 Answers

up vote 2 down vote accepted

put this anywhere in your .nsi (after inclusion of MUI.nsh):

!define MUI_ICON path_to_icon_file.ico
link|improve this answer
feedback

MUI_ICON changes the .exe icon and that icon is used by default in the MUI header but if you want to use a specific bitmap in the header you can use MUI_HEADERIMAGE/MUI_HEADERIMAGE_BITMAP

You can find all the Modern UI configuration options in the docs

link|improve this answer
feedback

For the sake of completion, this is the full code I used to change the logo (using Anders method) and the executable icon (using CharlesB method):

!define MUI_ICON "path\to\icon.ico"
!define MUI_HEADERIMAGE
!define MUI_HEADERIMAGE_BITMAP "path\to\InstallerLogo.bmp"
!define MUI_HEADERIMAGE_RIGHT
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.