1

I have create a signed MSI installer with the WIX toolset. The setup show a security box before installing (not on start). This security box show a cryptic name of hex numbers because the MSI file was copied to the C:\windows\installer directory.

Is there an option to show a nice program name in this security box?

Here is a sample of such security box:

enter image description here

Horcrux7
  • 23,758
  • 21
  • 98
  • 156
  • Duplicate of http://stackoverflow.com/questions/4315840/the-uac-prompt-shows-a-temporary-random-program-name-for-msi-can-the-correct-na – Horcrux7 Feb 15 '16 at 17:42

2 Answers2

5

When using the signtool.exe to sign your installer, use the /d option to provide a description text. https://msdn.microsoft.com/en-us/library/8s9b9yaz.aspx

st.huber
  • 1,481
  • 2
  • 24
  • 45
0

You have to Authenticode-sign your .msi to control the UAC prompt.

Bob Arnson
  • 21,377
  • 2
  • 40
  • 47