3

I want to use different icons for my setup.exe (top-leftmost corner of the installer window) and Add/Remove Programs. In my Bundle.wxs, I used <Bundle ... IconSourceFile='path\to\product1.ico'> but when I set the value there it is applying to both places as described in its documentation. So I tried this in my Product.wxs <Icon Id="ProductIcon" SourceFile="path\to\product2.ico"/> <Property Id='ARPPRODUCTICON' Value='ProductIcon'/> in an attempt to override the declaration in Bundle, but it still shows the first icon in Add/Remove programs. Any help? Thanks!

mark uy
  • 521
  • 1
  • 6
  • 17
  • In your element, what if you add Visible="yes" and reinstall the bundle? This should make the bundle icon and the MSI icon both show up in Add/Remove Programs. Are they now different? – Stein Åsmul Dec 22 '17 at 18:23

1 Answers1

0

I faced the same problem. The solution is to change Logo attribute of custom BA main window.

Kirumata
  • 165
  • 1
  • 9