Reputation: 1126
I'm using Visual Studio Installer to make a setup proyect for my solution. This is my setup properties example:
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:
The problem comes with the new Windows 10 configuration, where I cannot see company name for some reason:
Any idea to fix this?
Upvotes: 0
Views: 718
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