Microsoft equivalent of the nm command
Try dumpbin.exe.
MSDN dumpbin.exe reference.
Run
vcvarsall.bat
which might present in your installed path of Microsoft Visual Studio. This sets environmental variable required fordumpbin.exe
.D:>"D:\Program Files (x86)\Microsoft Visual Studio 10.0\vcvarsall.bat" x86
Then use
dumpbin.exe
. For exampledumpbin.exe /ALL <bin_file>
gives all symbols.