6

I received message like

enter image description here

where I need set my Publisher Name in .rc (resource file) to show it in this window?

vinnitu
  • 4,234
  • 10
  • 41
  • 59

2 Answers2

5

You need to set the FileDescription and CompanyName fields of your version resource.

David Heffernan
  • 601,492
  • 42
  • 1,072
  • 1,490
1

If you're using Visual Studio:

Expand your project and right-click Resource Files. Select Add --> Resource... --> Version.

Fill out the version, publisher, and product name fields as you like.

This will create a new .rc file in the project with your metadata. Recompile and you're good.

Jonathan Lidbeck
  • 1,555
  • 1
  • 14
  • 15