DekGenius.com
[ Team LiB ] Previous Section Next Section

D.8 PE File Format Viewer (dumpbin.exe)

dumpbin is not a new utility. However, since .NET Framework stores the IL inside the extended PE format, this old utility is still very useful for examining the structure of executable or DLLs, as well as listing import and export entries of the binaries. The general syntax for this utility is:

Dumpbin [options] PEFilename

Table D-8 shows some of the common dumpbin uses.

Table D-8. Dumpbin common uses

Option

Description

/all

Displays all information from the PE file.

/exports

Displays all exports from the PE file.

/header

Displays the header information from the PE file.

/clrheader

Display the .NET Framework header information for an image built with /clr (see CL.exe).

/imports

Displays all imports for the PE file.

    [ Team LiB ] Previous Section Next Section