I have an odd situation.
I set an installer that download the application files from the web.
I compressed all the files into a 7z file, and after the installer download it I extract it into the application folder.
It work well, but with one exception.
When you run the application you don't see its icon in the task bar , nor in the OS menu.
Instead you see the default, white style OS icon.
When I include the application EXE within the installer it work perfect.
When I do the same with INNO (downloading the 7z file) and it work perfect.
When I extract the 7z manual, it work perfect.
So I assume its something with NSIS.
In order to extract the 7z file I use this command:
Than I use this command to create a shortcutnsExec::Exec '"$PLUGINSDIR\7za.exe" e -y -o$\"$INSTDIR$\" $PLUGINSDIR\file.data'
CreateShortcut "$SMPROGRAMS\$StartMenuGroup\${APP_NAME}.lnk" "$INSTDIR\${APP_FILE_NAME}" "" "$INSTDIR\${APP_FILE_NAME}" I tried to set the icon in so many ways, nothing wrong.The only thing that did the trick is to include the EXE file in the installer, which I try to avoid.
File "${PRODUCT_PATH}\${APP_FILE_NAME}"Does anyone has an idea why and how it can be fixed?Thank you in advance