Reputation: 642
What exactly is the use of DUMPBIN.exe as well as COREFLAG.exe?? and when to use it??
Upvotes: 0
Views: 2329
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
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