I do not see dumpbin.exe on my system. I have Visual Studio 2005 on my system. When I type dumpbin on the command line, it says unrecognizable command.
Does it come
Instead of using the dumpin.exe it is possible to call the link.exe with several options:
Example: link /dump /all myfile.lib
For detailed options see output of link /dump
In case of Visual Studio C++ Express installation, the link.exe is located here:
{root}\Program Files (x86)\Microsoft Visual Studio 10.0\VC\bin\
The best way is to open the "Visual Studio Command Prompt" and then enter the lines above.