tags:

views:

553

answers:

2

Dear Friends,

What exactly is the use of DUMPBIN.exe as well as COREFLAG.exe?? and when to use it??

+2  A: 

Did you mean corflag (no e)? If so it's a utility used to change certain header properties of .Net executables. Most commonly it's used to change the processor architecture of a .Net DLL. Full documentation at

Less familiar with Dumpbin but the full documentation is here

JaredPar
+2  A: 

dumpbin.exe is just a utility that dumps various aspects of an executable image or .obj file (imports, exports, information in the header, etc).

A bit of trivia - dumpbin.exe is a simple program that just invokes link.exe with the /dump option. Or maybe it's the other way around.

Michael Burr
+1 for trivia.
JaredPar