Chetan
Chetan

Reputation: 642

.NET Command line utilities, dumpbin.exe and coreflag.exe

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

Upvotes: 0

Views: 2329

Answers (2)

Michael Burr
Michael Burr

Reputation: 340436

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.

Upvotes: 3

JaredPar
JaredPar

Reputation: 755397

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

Upvotes: 3

Related Questions