I am writing a small windows application.
I want to create a installer using nsis script.
I know how to change the default application icon, start menu icon and desktop shortcut icon by using
Application icon : !define MUI_ICON "${INSTALL_ICON}"
Shortcut on start menu : CreateShortCut "$SMPROGRAMS$StartMenuFoldershorcutName.lnk" "$INSTDIRexecutableName.exe" "" "$INSTDIR${INSTALL_ICON}" 0
Shortcut on Desktop : CreateShortCut "$DESKTOPshorcutName.lnk" "$INSTDIRexecutableName.exe" "" "$INSTDIR${INSTALL_ICON}" 0
But I want to also change the icon shown on the top left of the application window.
And icon shown in task manager and icon shown on task bar. I think should be done using winapi.
Any help would be appreciated.
Thanks in advance
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…