I am writing a c application in Visual Studio 2008, and need to grab some information from the executable to send to another application.

The info I need is what you get when you right click on an executable->Properties->Details

How can you get the "Product version" and "File version" information from .exe file in c?

and also can you set such values from Visual Studio 2008? if so how?

Specifically interested in Product version and File Version, though other version info (Product Name, etc) would be helpful as well.

Thanks!

link|improve this question

73% accept rate
Does this work for you? stackoverflow.com/questions/420185/… – birryree Nov 23 '10 at 16:58
feedback

2 Answers

up vote 1 down vote accepted

GetFileVersionInfoSize, GetFileVersionInfo, and VerQueryValue should at least give you a good start.

link|improve this answer
thanks, and is there a way to set the version info from Visual Studio? – emge Nov 23 '10 at 17:05
Yes -- if you're using an AppWizard generated project, it'll already have version info. Otherwise, in the resource view, right click on the project, click Add, then Resource, and choose "Version" from the list. That specific sequence is for VS 2008, but it's pretty similar (if not identical) for all recent versions, IIRC (e.g., in VS 2010, same sequence starting in the Solution Explorer). – Jerry Coffin Nov 23 '10 at 17:12
thanks! got it... and is there a way to auto-increment this value? – emge Nov 23 '10 at 17:23
@emge: I'm not aware of anything built-in to VS to auto-increment it. – Jerry Coffin Nov 23 '10 at 17:35
feedback

Use VerQueryValue().

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.