The icons in start menu and on desktop use the application's icon as specified in packager config.

The icons in start menu and on desktop use a generic icon.

What I found during my investigation:
electron-wix-msi that prevents extraction of the app's icon from the packaged exe. See also felixrieseberg/electron-wix-msi#99.The good news is that the latest versions of electron-wix-msi also allow specifying a custom icon to use. This means we could do the following:
MakerWixConfig to include the appIconPath property. Including this in your maker-wix config _already works_ at the moment, only the doc is missing.appIconPath property.Demo that this works, on my own app:
Hello , thanks a lot for this great package.
Even using appIconPath I don't get an icon for my package.
Any idea of another prerequisite ? (I did give a standard .ico path, both tried with a relative or absolute path)
correction : "I see the good icon in the start menu" , but not if I search for the name of my app in the windows menu (i see the gift icon)
Having the same issue here - any word on merging a fix?
I stumbled upon the icon issue when trying to use iconPath as documented in electron-wix-msi's doc. AFAIK, this is the underlying implementation, and forge should actually use the arg name as is to reduce confusion. Users like me will have a better chance to get it right on their own, who would've thought it's now called "appIconPath" while the substance is exactly the same?!
@kakyoism Forge actually doesn't change anything about the property's name. The problem is that electron-wix-msi documentation specifies iconPath but its code requires appIconPath. I mentioned this in felixrieseberg/electron-wix-msi#99 but seems I forgot to explicitly mention it here.
Most helpful comment
@kakyoism Forge actually doesn't change anything about the property's name. The problem is that
electron-wix-msidocumentation specifiesiconPathbut its code requiresappIconPath. I mentioned this in felixrieseberg/electron-wix-msi#99 but seems I forgot to explicitly mention it here.