Page 1 of 1

Running application from the installer doesn't have an icon in windows 8.1

Posted: Fri May 06, 2016 1:35 pm
by sol952
In my installer I have this:

Code: Select all

      if Variable SUCCESS Equals COMPLETE
        Run Program under UAC $TARGETDIR$\foo.exe
      end



It works as expected on windows 7 and 10 but when run on windows 8.1 the icon for it on the taskbar is just a blank document. When its closed and opened from the shortcut it has the correct icon. The problem is only when run from the installer the first time. How do I make the correct icon display for windows 8.1?

thanks

Re: Running application from the installer doesn't have an icon in windows 8.1

Posted: Mon May 09, 2016 12:19 pm
by FrancescoT
Dear sol952,

what you are reporting I don't believe has nothing to do with InstallAware.

This may depends on the resources included with your "foo.exe". This should include a BMP or an ICON for the different scaled version of the application logo (eg, 256x256, 128x128, 48x48 and so on). The system uses such BMP resource to represent the different sizes of the app logo ... due of this, it may be possible that some of these scaled versions of the application logo are blank.

Regards