.ESD

Файл ESD

Windows Electronic Software Download Image (Encrypted WIM)
Задать вопрос
БЫСТРЫЙ ОТВЕТ

An ESD file is a compressed, often encrypted Windows installation image - the file the Media Creation Tool and Windows Update download instead of a classic install.wim. It is read-only, so you cannot mount or edit it directly. Use the built-in DISM tool to inspect it or export it to a regular install.wim, then build a bootable ISO from there.

Разработчик: Microsoft Corporation Категория: Файлы образов дисков MIME: application/octet-stream
ОТКРЫВАЕТСЯ НА Windows macOS Linux
Связанные: .BIN · .ISO · .MDF · .DMG

На этой странице

Проиндексировано расширений: 19k+
Последняя проверка: Aug 29, 2026

Не знаете, что это за файл?

Перетащите любой файл в наш идентификатор - мы прочитаем первые байты, чтобы определить формат.

Идентифицировать файл

Что такое формат файла ESD?

An .esd file is a Windows Electronic Software Download image - a highly compressed, read-only variant of the .WIM container format that Microsoft uses to deliver Windows installation media through Windows Update and the Media Creation Tool.

The format debuted during the Windows 8/8.1 era as a more efficient replacement for the traditional install.wim. It applies LZMS ("recovery") compression instead of the older LZX/XPRESS algorithms, shrinking a full Windows edition image by roughly 30% compared with an equivalent .wim and producing typical file sizes in the 2-5 GB range.

Despite the .esd extension, every file begins with the same 8-byte WIM magic signature (4D 53 57 49 4D 00 00 00, ASCII MSWIM) at byte offset 0. Its internal structure mirrors WIM: a header, one or more image indexes (for example, Home and Pro packed into a single install.esd), an XML manifest, and LZMS-compressed, single-instance-stored file resources.

Distribution images downloaded from Windows Update are additionally encrypted, so they cannot be mounted or edited directly. The standard workflow is to export the desired index to a plain install.wim using DISM /Export-Image /Compress:max, or to use an open-source alternative such as wimlib-imagex. Locally generated ESDs - produced on-demand via DISM - are compressed but not encrypted.

The most common example is install.esd, located in the sources\ folder of media built by the Media Creation Tool, and also downloaded during in-place Windows upgrades via Windows Update.

Безопасность и защита

РИСК: LOW

An .esd is a passive disk image, not an executable, so the container is low risk - but it CONTAINS a full Windows OS (executables, drivers), so only use ESDs from genuine Microsoft sources (the Media Creation Tool or Windows Update); a tampered install.esd from a random download could carry a backdoored Windows build. Applying/exporting overwrites target files, so check paths when running DISM. Download tools (DISM is built in; 7-Zip, wimlib, NTLite) from their official sites and avoid sketchy 'ESD opener'/'ESD to ISO' web converters.

Детали формата

в двух словах
ПОЛНОЕ НАЗВАНИЕWindows Electronic Software Download Image (Encrypted WIM)также известен как Electronic Software Distribution image, install.esd
РАЗРАБОТЧИКMicrosoft Corporationс Windows 8 / 8.1 era (2013) for Windows Update & the Media Creation Tool
MIME-ТИПapplication/octet-stream
ТИПHighly-compressed, encrypted file-based Windows disk image (WIM variant, binary)
СВЯЗАННЫЕ.bin.iso.mdf.dmg
Это расширение также используется в…
  • ExpertScan Survey Document (AutoData Systems) - An .esd survey/forms data file created by AutoData Systems' ExpertScan - what the database's name field points to, but a minor secondary meaning (~the Windows image dominates).
  • MegaBACE Chromatogram (genetics) - An .esd DNA-sequence chromatogram from a MegaBACE instrument - niche scientific use.
  • Easy Street Draw Diagram - A 2D accident/crime-scene diagram file used by law enforcement, saved as .esd.
MAGIC BYTES · СИГНАТУРА ФАЙЛА
СМЕЩЕНИЕ
0001020304050607
HEX
4D5357494D000000
ASCII
MSWIM···
An ESD is a WIM variant and begins with the same 8-byte signature "MSWIM\0\0\0" (4D 53 57 49 4D 00 00 00) at offset 0. It differs from a plain .wim by using LZMS ('recovery') compression and, for distribution images, by being encrypted - so it cannot be mounted/edited directly until decrypted/exported back to WIM.

Программы, открывающие файлы ESD

Windows4 apps
7-Zip Открытый код Right-click an UNencrypted .esd > 7-Zip > Open archive to browse/extract files. Encrypted Windows Update ESDs must be exported via DISM first.
DISM (built-in Windows) Встроенная Inspect: 'dism /Get-WimInfo /WimFile:install.esd'. Convert to WIM: 'dism /Export-Image /SourceImageFile:install.esd /SourceIndex:1 /DestinationImageFile:install.wim /Compress:max'. The native ESD tool.
wimlib (wimlib-imagex) Открытый код 'wimlib-imagex export install.esd 1 install.wim --compress=LZX' or extract files; handles ESD on Windows/Linux/macOS.
Dism++ / NTLite Freemium GUI front-ends that export an .esd to .wim and rebuild a bootable ISO without memorizing DISM commands.
macOS1 app
wimlib (via Homebrew) Открытый код 'brew install wimlib', then 'wimlib-imagex extract install.esd 1 path' to pull files out on macOS.
Linux1 app
wimlib (wimtools) Открытый код 'wimlib-imagex info install.esd' / 'wimlib-imagex apply install.esd 1 dir'; the standard way to read/convert ESD on Linux.

Технические подробности

глубокая спецификация
Format typeHighly-compressed, read-only binary variant of the WIM (Windows Imaging Format) container
DeveloperMicrosoft Corporation
Magic bytes (hex)4D 53 57 49 4D 00 00 00 at byte offset 0 - identical to standard .wim; both share the same WIM header signature
Compression algorithmLZMS ("recovery") compression - solid compression producing ~30% smaller output than LZX/XPRESS WIM
EncryptionDistribution ESDs from Windows Update are encrypted; locally exported ESDs are compressed only
Byte orderLittle-endian
Typical file size2-5 GB for a full Windows edition image
Internal structureWIM header + one or more image indexes + XML metadata manifest + LZMS-compressed single-instance file resource store
Multi-edition supportA single install.esd can contain multiple Windows editions (e.g., Home and Pro) as separate image indexes
Read/write modeRead-only; cannot be directly mounted, modified, or appended - especially when encrypted
MIME typeapplication/octet-stream (also application/x-ms-wim)
Integrity verificationPer-resource SHA-based hashes stored in the WIM lookup table; verified automatically during DISM apply or export
Primary use caseDelivery of Windows installation images via Windows Update and the Media Creation Tool
Conversion workflowExport to .wim with DISM /Export-Image /Compress:max or wimlib-imagex --export before mounting or editing
Platform supportNatively supported on Windows 8 and later; readable on Linux and macOS via wimlib
ВыпущенWindows 8 / 8.1 era (2013) for Windows Update & the Media Creation Tool
Последняя версияN/A (tracks the WIM format; uses LZMS 'recovery' compression)
Спецификацияlearn.microsoft.com

Конвертации ESD

Вопросы и ответы сообщества

спрошено пользователями
Задать быстрый вопрос
Получите помощь от людей, работающих с файлами ESD. Будьте конкретны - укажите вашу систему и версию ПО.
Аккаунт не нужен · ответы обычно в течение дня

Вопросов пока нет - станьте первым, кто спросит о файлах ESD.

Часто задаваемые вопросы

What is an .esd file?
A Windows installation image - a highly compressed, often encrypted variant of the WIM disk-image format. install.esd is what the Media Creation Tool and Windows Update download; it holds the Windows file set, sometimes several editions.
How do I convert install.esd to install.wim?
Use the built-in DISM tool: 'dism /Export-Image /SourceImageFile:install.esd /SourceIndex:1 /DestinationImageFile:install.wim /Compress:max'. wimlib does the same on Linux/macOS. The WIM can then be mounted and edited.
How do I make a bootable ISO from an .esd?
Export the .esd to install.wim, drop it into a Windows source tree, and build the ISO with the ADK's oscdimg - or use a GUI like NTLite/Dism++ that automates the whole ESD-to-ISO process.
Why can't I mount or open install.esd directly?
ESD images are read-only and the ones from Windows Update are encrypted, so DISM can't mount them in place. Export the .esd to a regular .wim first, then mount/modify that.
What's the difference between ESD and WIM?
Both are Windows file-based images with the same 'MSWIM' format. ESD uses heavier LZMS ('recovery') compression (~30% smaller) and is often encrypted and read-only; WIM uses LZX/XPRESS and can be mounted and edited. DISM converts between them.
Can I open an .esd with 7-Zip?
An unencrypted (locally exported) .esd, yes - browse it like a WIM archive. An encrypted Windows Update install.esd must be exported to a .wim with DISM first; 7-Zip can't decrypt it.

Ссылки

1Microsoft - Windows Imaging File Format (WIM) specificationlearn.microsoft.com
2Microsoft - DISM image management (Export-Image)learn.microsoft.com

Узнать больше

по всей базе данных

Популярные расширения на этой неделе

1.AQQAQQ Instant Messenger File
2.BINCD/DVD Disc Image (BIN/CUE)
3.MDMarkdown Document
4.PARTPartial Download File
5.RPMSGRestricted Permission Message
6.CRDOWNLOADChrome Partial Download File
7.NOMEDIAAndroid No-Media Marker File
8.PRDXSoftMaker Presentations Document
9.PRO6XProPresenter 6 Bundle File
10.SWFSmall Web Format (Shockwave Flash)

Похожие расширения

.BINCD/DVD Disc Image (BIN/CUE)
.ISOISO disc image (ISO 9660 / UDF)
.MDFMedia Descriptor File (Alcohol 120% / DAEMON Tools disc image)
.DMGApple Disk Image
.NRGNero Burning ROM Disc Image
.TIBAcronis True Image Backup

Бесплатные инструменты для файлов

Идентификатор файлов и конвертер изображений в браузере - все работает на вашем устройстве.

Открыть инструменты

Обзор расширений файлов A-Z