Yahoo Web Search

Search results

    • File format for executables, object code, DLLs

      • The Portable Executable (PE) format is a file format for executables, object code, DLLs and others used in 32-bit and 64-bit versions of Windows operating systems, and in UEFI environments.
      en.wikipedia.org › wiki › Portable_Executable
  1. People also ask

  2. The Portable Executable (PE) format is a file format for executables, object code, DLLs and others used in 32-bit and 64-bit versions of Windows operating systems, and in UEFI environments. The PE format is a data structure that encapsulates the information necessary for the Windows OS loader to manage the wrapped executable code .

    • application/vnd.microsoft.portable-executable
  3. General Concepts. This document specifies the structure of executable (image) files and object files under the Microsoft Windows family of operating systems. These files are referred to as Portable Executable (PE) and Common Object File Format (COFF) files, respectively.

    Code sample

    typedef struct _IMAGE_DATA_DIRECTORY {
      DWORD VirtualAddress;
      DWORD Size;
    } IMAGE_DATA_DIRECTORY, *PIMAGE_DATA_DIRECTORY;
  4. Mar 24, 2023 · A Windows Portable Executable (PE) is the Windows native file format for executables and other binary file types. The PE file format is designed to be platform-independent, so it can be used on any Windows machine running the same operating system version and processor architecture for which the file was compiled.

    • Linux & Security Author
  5. Oct 23, 2019 · The term "Portable Executable" was chosen because the intent was to have a common file format for all flavors of Windows, on all supported CPUs. To a large extent, this goal has been achieved with the same format used on Windows NT and descendants, Windows 95 and descendants, and Windows CE.

  6. Oct 22, 2021 · PE files. PE stands for Portable Executable, it’s a file format for executables used in Windows operating systems, it’s based on the COFF file format (Common Object File Format). Not only .exe files are PE files, dynamic link libraries (.dll), Kernel modules (.srv), Control panel applications (.cpl) and many others are also PE files.

  7. Oct 23, 2019 · The Portable Executable format is a well-structured and relatively simple executable format. It's particularly nice that PE files can be mapped directly into memory so that the data structures on disk are the same as those Windows uses at runtime.

  8. Portable Executables ( PE) are files that contain all the necessary information for the operating system to correctly load executable code ( .exe, .dll, ...) This may include dynamic library references for linking, resource management, TLS data, among other things.

  1. People also search for