Reputation: 649
I had created .msi file to install my C# windows application , i had used wix toolset to create this .msi . while installing this .msi file , it display user account control message with yellow banner as shown in this image User Account Control with yellow banner
it does't display the publisher name although i had wrote it inside the installer.
I want it to appear with blue banner that displays the publisher name as following image User account control with blue banner
Upvotes: 2
Views: 563
Reputation: 3099
The documentation says that you have to sign your msi file using a certificate and signtool.exe
. See:
Installer without signature:
Installer with signature:
The strange thing here is the MSI name 61913df.msi
, the filename originally is SampleSetup1.msi
.
Upvotes: 1