but it doesnt want to work...
I used :
!define MUI_ICON "${NSISDIR}\Contrib\Icon\normal-install.ico"
!define MUI_UNICON "${NSISDIR}\Contrib\Icon\normal-uninstall.ico" Here is a bit of code from my script!define MUI_PRODUCT "Crystalfontz Boot Screen"
!define MUI_VERSION "1.0"
!include "${NSISDIR}\Contrib\Modern UI\System.nsh"
;--------------------------------
;Configuration
!define MUI_ICON "${NSISDIR}\Contrib\Icon\normal-install.ico"
!define MUI_UNICON "${NSISDIR}\Contrib\Icon\normal-uninstall.ico"
!define MUI_COMPONENTSPAGE
!define MUI_DIRECTORYPAGE
!define MUI_ABORTWARNING
!define MUI_UNINSTALLER
!define MUI_UNCONFIRMPAGE
;Language
!insertmacro MUI_LANGUAGE "English"
;General
OutFile "Setup.exe"
;Descriptions
LangString DESC_SecCopyUI ${LANG_ENGLISH} "Install the core"
;Folder-selection page
InstallDir "$PROGRAMFILES\${MUI_PRODUCT}"
;--------------------------------