readelf utility for Visual Studio C++ ABI and VS compiled objects?

abi, c++, objdump, readelf, visual-c++

Solution

The `dumpbin` utility is included with Visual Studio. It has many options.

Problem

I'm looking for alternatives to the `readelf` and `objdump` duo when using Visual Studio for compiling C++ source code and investigating `lib`, `obj` and `dll`. I'm aware that MinGW offers a porting of this tools but I'm looking for something with an official support for the Microsoft C++ ABI. I'm using Visual Studio 2012 if this matter. Thanks.

Original source