Laila
Laila

Reputation: 649

User account control message with yellow banner while running .msi Created by wix installer

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

Answers (1)

ventiseis
ventiseis

Reputation: 3099

The documentation says that you have to sign your msi file using a certificate and signtool.exe. See:

Installer without signature:

uac screenshot

Installer with signature:

uac screenshot

The strange thing here is the MSI name 61913df.msi, the filename originally is SampleSetup1.msi.

Upvotes: 1

Related Questions