vote up 3 vote down star
2

I need to get the product version and file version for a dll or exe using Win32 native APIs in C or C++. I'm not looking for the Windows version, but the version numbers that you see by right-clicking on a dll, selecting "Properties", then looking at the "Details" tab. This is usually a four-part dotted version number x.x.x.x.

flag

Which language are you using? – overslacked Jun 2 at 17:12
3  
Doesn't matter if he just wants Win32 API calls. Any language that supports calling system DLLs should be fine. – crashmstr Jun 2 at 17:15
Edited to clarify that this is about C/C++. – JS Bangs Jun 2 at 17:27

6 Answers

vote up 11 vote down check

You would use the GetFileVersionInfo API.

See Using Version Information on the MSDN site.

Sample:

DWORD  verHandle = NULL;
UINT   size      = 0;
LPBYTE lpBuffer  = NULL;
DWORD  verSize   = GetFileVersionInfoSize( szVersionFile, &verHandle);

if (verSize != NULL)
{
    LPSTR verData = new char[verSize];

    if (GetFileVersionInfo( szVersionFile, verHandle, verSize, verData))
    {
    	if (VerQueryValue(verData,"\\",(VOID FAR* FAR*)&lpBuffer,&size))
    	{
    		if (size)
    		{
    			VS_FIXEDFILEINFO *verInfo = (VS_FIXEDFILEINFO *)lpBuffer;
    			if (verInfo->dwSignature == 0xfeef04bd)
    			{
    				int major = HIWORD(verInfo->dwFileVersionMS);
    				int minor = LOWORD(verInfo->dwFileVersionMS);
    				int build = verInfo->dwFileVersionLS;
    			}
    		}
    	}
    }
}
link|flag
In practice I've found that the build is the HIWORD, and the LOWORD is the number after the last dot, which is almost always 0. Otherwise, this is correct. – JS Bangs Jun 4 at 20:35
I generally only worry about 3 numbers for my apps, so I just grab the value. Which ends up being like A.B.0.C But if you wanted all four, then you would need to HIWORD/LOWORD the other. – crashmstr Jun 4 at 20:40
vote up 8 vote down

GetFileVersionInfo()

link|flag
vote up 4 vote down

Found these articles...sorry, but I don't have direct experience with how to do this using native APIs, so I deferred to an Internet search:

Hope these help!

link|flag
vote up 4 vote down

[Self-answering, since it took me a lot of Googling to get the right answer to this question, and right now the top Google hits are misleading.]

You get this information using the Version Information APIs (http://msdn.microsoft.com/en-us/library/ms646981.aspx). Here is a sample:

void PrintFileVersion( TCHAR *pszFilePath )
{
    DWORD               dwSize              = 0;
    BYTE                *pbVersionInfo      = NULL;
    VS_FIXEDFILEINFO    *pFileInfo          = NULL;
    UINT                puLenFileInfo       = 0;

    // get the version info for the file requested
    dwSize = GetFileVersionInfoSize( pszFilePath, NULL );
    if ( dwSize == 0 )
    {
        printf( "Error in GetFileVersionInfoSize: %d\n", GetLastError() );
        return;
    }

    pbVersionInfo = new BYTE[ dwSize ];

    if ( !GetFileVersionInfo( pszFilePath, 0, dwSize, pbVersionInfo ) )
    {
        printf( "Error in GetFileVersionInfo: %d\n", GetLastError() );
        delete[] pbVersionInfo;
        return;
    }

    if ( !VerQueryValue( pbVersionInfo, TEXT("\\"), (LPVOID*) &pFileInfo, &puLenFileInfo ) )
    {
        printf( "Error in VerQueryValue: %d\n", GetLastError() );
        delete[] pbVersionInfo;
        return;
    }

    // pFileInfo->dwFileVersionMS is usually zero. However, you should check
    // this if your version numbers seem to be wrong

    printf( "File Version: %d.%d.%d.%d\n",
        ( pFileInfo->dwFileVersionLS >> 24 ) & 0xff,
        ( pFileInfo->dwFileVersionLS >> 16 ) & 0xff,
        ( pFileInfo->dwFileVersionLS >>  8 ) & 0xff,
        ( pFileInfo->dwFileVersionLS >>  0 ) & 0xff
        );

    // pFileInfo->dwProductVersionMS is usually zero. However, you should check
    // this if your version numbers seem to be wrong

    printf( "Product Version: %d.%d.%d.%d\n",
        ( pFileInfo->dwProductVersionLS >> 24 ) & 0xff,
        ( pFileInfo->dwProductVersionLS >> 16 ) & 0xff,
        ( pFileInfo->dwProductVersionLS >>  8 ) & 0xff,
        ( pFileInfo->dwProductVersionLS >>  0 ) & 0xff
        );

}
link|flag
vote up 3 vote down

The easiest way is to use the GetFileVersionInfoEx or GetFileVersionInfo API functions.

You can also do it from within your application resources as explained here.

link|flag
vote up -3 vote down

Those sorts of things are often stored in the registry.

link|flag

Your Answer

Get an OpenID
or

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