Personal tools

Difference between revisions of "Dumpbin"

From MohidWiki

Jump to: navigation, search
(See also)
Line 14: Line 14:
 
*[[stacksize]]
 
*[[stacksize]]
 
*[[editbin]]
 
*[[editbin]]
*[[dumpbin]]
 
  
 
[[Category:Technology]]
 
[[Category:Technology]]
 
[[Category:Windows]]
 
[[Category:Windows]]

Revision as of 17:33, 17 March 2011

Dumpbin is a great little utility provided in Windows XP that allows to dump binary files and view their content. It is particularly usefule to see the symbolic table.

HowTo

From a dos box

>dumpbin /SYMBOLS file > file_dump.log

Where file is the filename. This will list the local functions as well as the externals.

> dumpbin /EXPORTS library > lib_dump.log

where library is a library filename. This will list the library's exported symbols.

> dumpbin /HEADERS  exefile | grep stack

This will list the stack reserve size commited at link time.

See also