How do I programatically get the version of a dll or exe? - Stack Overflow most recent 30 from stackoverflow.com2009-12-07T02:34:58Zhttp://stackoverflow.com/feeds/question/940707http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/940707/how-do-i-programatically-get-the-version-of-a-dll-or-exe3How do I programatically get the version of a dll or exe?JS Bangs2009-06-02T17:04:57Z2009-06-03T09:44:04Z
<p>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 <em>not</em> 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.</p>
http://stackoverflow.com/questions/940707/how-do-i-programatically-get-the-version-of-a-dll-or-exe/940728#940728-3Answer by Shane C. Mason for How do I programatically get the version of a dll or exe?Shane C. Mason2009-06-02T17:10:21Z2009-06-02T17:10:21Z<p>Those sorts of things are often stored in the registry.</p>
http://stackoverflow.com/questions/940707/how-do-i-programatically-get-the-version-of-a-dll-or-exe/940735#9407354Answer by Steve J for How do I programatically get the version of a dll or exe?Steve J2009-06-02T17:11:45Z2009-06-02T17:11:45Z<p>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:</p>
<ul>
<li>C++: <a href="http://www.codeproject.com/KB/DLL/dllversion.aspx" rel="nofollow" title="Determining the version number of a DLL or Executable">Determining the version number of a DLL or Executable</a></li>
<li>VB (probably version 6): <a href="http://support.microsoft.com/kb/139491" rel="nofollow" title="How to Use Functions in VERSION.DLL">How to Use Functions in VERSION.DLL</a></li>
</ul>
<p>Hope these help!</p>
http://stackoverflow.com/questions/940707/how-do-i-programatically-get-the-version-of-a-dll-or-exe/940738#9407388Answer by Matt Schmidt for How do I programatically get the version of a dll or exe?Matt Schmidt2009-06-02T17:13:37Z2009-06-02T17:13:37Z<p><a href="http://msdn.microsoft.com/en-us/library/ms647003%28VS.85%29.aspx" rel="nofollow">GetFileVersionInfo()</a></p>
http://stackoverflow.com/questions/940707/how-do-i-programatically-get-the-version-of-a-dll-or-exe/940743#94074311Answer by crashmstr for How do I programatically get the version of a dll or exe?crashmstr2009-06-02T17:14:38Z2009-06-02T17:23:46Z<p>You would use the <a href="http://msdn.microsoft.com/en-us/library/ms647003.aspx" rel="nofollow">GetFileVersionInfo</a> API.</p>
<p>See <a href="http://msdn.microsoft.com/en-us/library/ms646985(VS.85).aspx" rel="nofollow">Using Version Information</a> on the MSDN site.</p>
<p>Sample:</p>
<pre><code>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;
}
}
}
}
}
</code></pre>
http://stackoverflow.com/questions/940707/how-do-i-programatically-get-the-version-of-a-dll-or-exe/940745#9407453Answer by Dani van der Meer for How do I programatically get the version of a dll or exe?Dani van der Meer2009-06-02T17:15:10Z2009-06-02T17:15:10Z<p>The easiest way is to use the <a href="http://msdn.microsoft.com/en-us/library/aa969434%28VS.85%29.aspx" rel="nofollow">GetFileVersionInfoEx</a> or <a href="http://msdn.microsoft.com/en-us/library/ms647003%28VS.85%29.aspx" rel="nofollow">GetFileVersionInfo</a> API functions. </p>
<p>You can also do it from within your application resources as explained <a href="http://www.codeproject.com/KB/cpp/GetLocalVersionInfos.aspx" rel="nofollow">here</a>.</p>
http://stackoverflow.com/questions/940707/how-do-i-programatically-get-the-version-of-a-dll-or-exe/940784#9407844Answer by JS Bangs for How do I programatically get the version of a dll or exe?JS Bangs2009-06-02T17:22:40Z2009-06-02T17:22:40Z<p>[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.]</p>
<p>You get this information using the Version Information APIs (<a href="http://msdn.microsoft.com/en-us/library/ms646981.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/ms646981.aspx</a>). Here is a sample:</p>
<pre><code>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
);
}
</code></pre>