How do I programatically get the version of a dll or exe? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-07T02:34:58Z http://stackoverflow.com/feeds/question/940707 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/940707/how-do-i-programatically-get-the-version-of-a-dll-or-exe 3 How do I programatically get the version of a dll or exe? JS Bangs 2009-06-02T17:04:57Z 2009-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 -3 Answer by Shane C. Mason for How do I programatically get the version of a dll or exe? Shane C. Mason 2009-06-02T17:10:21Z 2009-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#940735 4 Answer by Steve J for How do I programatically get the version of a dll or exe? Steve J 2009-06-02T17:11:45Z 2009-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#940738 8 Answer by Matt Schmidt for How do I programatically get the version of a dll or exe? Matt Schmidt 2009-06-02T17:13:37Z 2009-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#940743 11 Answer by crashmstr for How do I programatically get the version of a dll or exe? crashmstr 2009-06-02T17:14:38Z 2009-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#940745 3 Answer by Dani van der Meer for How do I programatically get the version of a dll or exe? Dani van der Meer 2009-06-02T17:15:10Z 2009-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#940784 4 Answer by JS Bangs for How do I programatically get the version of a dll or exe? JS Bangs 2009-06-02T17:22:40Z 2009-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*) &amp;pFileInfo, &amp;puLenFileInfo ) ) { printf( "Error in VerQueryValue: %d\n", GetLastError() ); delete[] pbVersionInfo; return; } // pFileInfo-&gt;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-&gt;dwFileVersionLS &gt;&gt; 24 ) &amp; 0xff, ( pFileInfo-&gt;dwFileVersionLS &gt;&gt; 16 ) &amp; 0xff, ( pFileInfo-&gt;dwFileVersionLS &gt;&gt; 8 ) &amp; 0xff, ( pFileInfo-&gt;dwFileVersionLS &gt;&gt; 0 ) &amp; 0xff ); // pFileInfo-&gt;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-&gt;dwProductVersionLS &gt;&gt; 24 ) &amp; 0xff, ( pFileInfo-&gt;dwProductVersionLS &gt;&gt; 16 ) &amp; 0xff, ( pFileInfo-&gt;dwProductVersionLS &gt;&gt; 8 ) &amp; 0xff, ( pFileInfo-&gt;dwProductVersionLS &gt;&gt; 0 ) &amp; 0xff ); } </code></pre>