I'm really new into it... This is my script ...
I don't know what I'm doing wrong ... my icon is blank (white color)... just if I'm refreshing my desktop it's visible.... :\ I also checked it in other pc... same issue...
;Change this file to customize zip2exe generated installers with a modern interface
!include "MUI2.nsh"
!define MUI_ICON "${NSISDIR}\contrib\graphics\icons\install.ico"
!insertmacro MUI_PAGE_DIRECTORY
!insertmacro MUI_PAGE_INSTFILES
Section
SetShellVarContext all
SetOutPath "$INSTDIR"
CreateShortCut "$DESKTOP\app.lnk" "$INSTDIR\app.exe" "" "$INSTDIR\.icon\m.ico" 0
SectionEnd
!insertmacro MUI_LANGUAGE "English"
|