From 344efcfa6fb5bc45c7c2c8e911e97d8f9b72d2fc Mon Sep 17 00:00:00 2001 From: clay_shooter Date: Sun, 18 Feb 2007 16:31:06 +0000 Subject: [PATCH] SF 1483819 info on how to get the version number of a dll --- docs/UsingJacob.html | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/docs/UsingJacob.html b/docs/UsingJacob.html index 4477b01..063a0e3 100644 --- a/docs/UsingJacob.html +++ b/docs/UsingJacob.html @@ -53,7 +53,17 @@ This library supports several different :

The default is "no additional checking" Example: -XCheck:jni +

+


+

Finding the DLL version using windows command line

+The jacob.dll file includes the jacob release number in the version field. +Run the following from the command prompt dumpbin /version jacob.dll . +The dll version number is stored in the "image version" field of the +"OPTIONAL HEADER VALUES" section. +This information from +The Microsoft msdn web site +

Last Modified 2/2007