WIM (Windows image)
Also known as: WIM file, .wim image, Windows Imaging Format, install.wim
WIM (Windows Imaging Format) is a file-based disk-image format Microsoft uses to deploy Windows. Unlike sector-based images, it stores files individually, so one WIM can hold multiple Windows editions and reuse identical files to save space.
- File-based (not sector-based) Windows image format
- Holds multiple editions; deduplicates identical files
- Managed with DISM/ImageX; can be mounted as a folder
A file-based image
Most disk images copy a drive sector by sector. WIM instead captures the files themselves, which makes it hardware-independent and lets a single image deploy to different machines.
It can store several Windows editions in one file and stores any duplicate file only once, keeping the image compact. The install.wim inside a Windows installer is the classic example.
Working with WIM files
Windows deployment tools (DISM, ImageX) capture, mount, and apply WIM images. You can mount a WIM as a folder to browse or edit its contents, then commit changes back.
The ESD format is a more heavily compressed relative of WIM used for Windows delivery.