3

How do I change the publisher name for the visual studio installer in visual studio 2015? I want to be able to display the correct publisher name in Programs and features section of control panel when its install.

callme_wiz
  • 43
  • 2
  • 8

2 Answers2

6

Manufacturer Property: I only have access to the 2017 version. However, in Visual Studio, when you left click the installer project in "Solution Explorer", is there not a properties list that includes the property "Manufacturer"? Please try to change the name there.

Ze Company

UAC Prompt: In order to change the name which shows up in the UAC pop-up dialog to elevate rights for the installation, you need to sign your package with an appropriate certificate. Is it possible to define a Windows Installer-uninstaller filename? (also check the links).

UPDATE: Even signed MSI packages can show up with a dodgy name in the UAC prompt. Here is a description of how to avoid this by proper signing procedure.

UAC


Some Links:

Stein Åsmul
  • 39,960
  • 25
  • 91
  • 164
0

I use Microsoft Visual Studio Installer Projects to create an MSI. After successfully configuring and creating the MSI package, I follow these steps:

  1. In their organization, they receive an internal certificate with a private key that allows me to sign the private key
  2. Export it to pfx format
  3. I sign my MSI package

C:\Program Files (x86)\Microsoft SDKs\ClickOnce\SignTool>signtool.exe sign /f "C:\Users\kul\source\repos\kul.pfx" /p "mypass" /d "SuperSoft" "C:\Users\kul\source\repos\SuperSoft\Release\Setup.msi"

enter image description here

KUL
  • 391
  • 2
  • 15