Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

set publisher field in .rc file

Tags:

winapi

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?

like image 760
vinnitu Avatar asked Mar 28 '11 14:03

vinnitu


2 Answers

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

like image 191
David Heffernan Avatar answered Nov 02 '22 01:11

David Heffernan


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.

like image 20
Jonathan Lidbeck Avatar answered Nov 02 '22 00:11

Jonathan Lidbeck