Windows Imaging Format


The Windows Imaging Format is a file-based disk image format. It was developed by Microsoft to help deploy Windows Vista and subsequent versions of the Windows operating system family, as well as Windows Fundamentals for Legacy PCs.

Design

Like other disk image formats, a WIM file contains a set of files and associated filesystem metadata. However, unlike sector-based formats, WIM is file-based: The fundamental unit of information in a WIM is a file.
The primary advantages of being file-based is hardware independence and single-instance storage of a file referenced multiple times in the filesystem tree. Since the files are stored inside a single WIM file, the overhead of opening and closing many individual files is reduced. The cost of reading or writing many thousands of individual files on the local disk is negated by hardware and software-based disk caching as well as sequential reading and writing of the data.
WIM files can contain multiple disk images, which are referenced either by their numerical index or by their unique name. Due to the use of single-instance storage, the more each successive disk image has in common with previous images added to the WIM file, the less new data will be added. A WIM can also be split into multiple parts, which have the .swm extension.
WIM images can be made bootable. Windows boot loader supports booting Windows from within a WIM file. Windows Setup DVD in Windows Vista and later use such WIM files. In this case, BOOT.WIM contains a bootable version of Windows PE from which the installation is performed. Other setup files are held in the INSTALL.WIM.
WIM supports three families of LZ77-based compression algorithms in ascending ratio and descending speed: XPRESS, LZX, and LZMS. The former two use Huffman encoding, while the latter uses adaptive Huffman encoding with range coding. There is also support for solid compression. Both solid compression and LZMS are introduced more recently, in WIMGAPI Windows 8 and DISM Windows 8.1.

Tools

ImageX

ImageX is the command-line tool used to create, edit and deploy Windows disk images in the Windows Imaging Format. Along with the underlying Windows Imaging Interface library, It is distributed as part of the free Windows Automated Installation Kit. Starting with Windows Vista, Windows Setup uses the WAIK API to install Windows.
The first distributed prototype of ImageX was build 6.0.4007.0. It allowed Microsoft OEM partners to experiment with the imaging technology and was developed in parallel with Longhorn alpha prototypes. It was first introduced in Milestone 4 into the Longhorn project, and used in later builds of Longhorn. Build 6.0.5384.4 added significant advantages over previous versions, like read-only and read/write folder mounting capabilities, splitting to multiple image files, a WIM filter driver and the latest compression algorithms. It has been used since pre-RC of Windows Vista.

DISM

Deployment Image Service and Management Tool is a tool introduced in Windows 7 and Windows Server 2008 R2 that can perform servicing tasks on a Windows installation image, be it an online image or an offline image within a folder or WIM file. Its features include mounting and unmounting images, querying installed device drivers in an offline image, and adding a device driver to an offline image. It is now possible to repair with DISM any image using either a Windows Installation CD or Windows Update.
Before Windows Server 2012 and Windows 8, DISM had incorporated the majority of ImageX functions but not all; ImageX was still needed for image capture. However, DISM deprecated ImageX in Windows 8.

Support in other operating systems

Since April 30, 2012, an open source library for handling the WIM format is available. This library can be used on Unix-like systems as well as on Windows. Thanks to this project, Linux distributions now have their own imagex clone called wimlib-imagex which allows mounting WIM images and managing them like any other file system.
As WIM images use somewhat common compression algorithms, they can be accessed by using file archivers like 7-Zip.
For other operating systems that might not support this format, it is still possible to convert.wim images to the more commonly used ISO image using the Windows Assessment and Deployment Kit on Windows.