Portable Executable
From Just Solve the File Format Problem
(Difference between revisions)
(PRONOM) |
Dan Tobias (Talk | contribs) (→Links) |
||
Line 28: | Line 28: | ||
** [http://pe102.corkami.com/ PE102 - a Windows executable format overview] | ** [http://pe102.corkami.com/ PE102 - a Windows executable format overview] | ||
** [https://code.google.com/p/corkami/wiki/PE101 PE101 - a Windows executable walkthrough] | ** [https://code.google.com/p/corkami/wiki/PE101 PE101 - a Windows executable walkthrough] | ||
+ | * [http://www.mitec.cz/exe.html EXE Explorer utility] | ||
[[Category:Microsoft]] | [[Category:Microsoft]] |
Revision as of 03:13, 2 October 2014
PE (Portable Executable, also called PE/COFF) is a member of the EXE family of executable file formats. It is mainly used by 32- and 64-bit Microsoft Windows operating systems. It is an extension/hybrid of MS-DOS EXE, and a successor to NE. Parts of it are derived from COFF.
Despite the name, not all PE files are executable. Some contain only icons, fonts, etc.
Contents |
Formats
- PE32 format is used by 32-bit Windows.
- PE32+ format is used by 64-bit Windows.
Identification
A PE file begins with the ASCII signature "MZ
". At offset 60 is a 4-byte integer pointing to an "extended" header that begins with 'P' 'E' 0x00 0x00
. For more information, see MS-DOS EXE.
See also
Links
- Wikipedia article
- PE, from the OSDev Wiki
- Microsoft PE and COFF Specification
- Article on the PE format as used by Windows NT 3, by Johannes Plachy
- Forensics Wiki: Portable Executable Format
- PE (corkami.com)
- EXE Explorer utility