Reputation: 4425
I have developed a setup for my project using WIX installer.I am really new to it. Now i have completely finished developing the installer but i need to customize the Icon of the Dialog window.How to set the icon of our product to it.??
How to change this icon ??
I have tried the below code ,But its not working?
<Icon Id="icon.ico" SourceFile="MySourceFiles\icon.ico"/>
<Property Id="ARPPRODUCTICON" Value="icon.ico" />
Upvotes: 1
Views: 1302
Reputation: 107
The icon you are asking about is managed by Windows Installer and can't be changed. It is a default icon assigned to all MSI packages by the OS. You can change the default icon for all MSI packages in the system registry, but this is most likely not what you're trying to do.
Upvotes: 2