Windows Imaging Format - DISM

Deployment Image Service and Management Tool (DISM) is used to retrieve or modify information within an image.

Example of usage:

Mounting an image
dism /mount-image /imagefile:c:\win7\sources\boot.wim /index:1 /mountdir:c:\temp2
Querying installed device drivers in an offline image
dism /image:c:\temp2 /get-drivers
Adding a device driver to an offline image
dism /image:c:\temp2 /add-driver /driver:C:\dell\drivers\r191214\nvdm.inf
Unmounting an image
dism /unmount-wim /mountdir:c:\temp2 /commit dism /unmount-wim /mountdir:c:\temp2 /discard

Read more about this topic:  Windows Imaging Format