Antonio Rodríguez
Antonio Rodríguez

Reputation: 1126

Visual Studio Installer company name on Windows 10

I'm using Visual Studio Installer to make a setup proyect for my solution. This is my setup properties example:

Setup properties

Once I install my result, if I go to Control Panel and try to find my software, I see this, including software name and company name:

Control panel > Installed software

The problem comes with the new Windows 10 configuration, where I cannot see company name for some reason:

Windows 10 Configuration > Installed software

Any idea to fix this?

Upvotes: 0

Views: 718

Answers (1)

Fixation
Fixation

Reputation: 989

The displayed value on Windows 10 is the 'Publisher' property. You can't set this in the installer project but instead is read from the code-signing certificate, used to sign the MSI, of your company (if they own one)

Answer from Microsoft Community

You need to digitally sign your MSI. One set of instructions can be found here; MSDN contains more information.

Upvotes: 2

Related Questions