Sign up for the ITPro Today newsletter
Stay on top of the IT universe with commentary, news analysis, how-to's, and tips delivered to your inbox daily.
Learn to use dism to mount images.
February 25, 2017
Q. How do I use DISM to mount and unmount images?
A. DISM provides the ability to mount WIM and VHD files, make changes such as apply drivers or updates and then dismount, saving the changes. Below are three simple DISM commands that first list images in a file, mount the file and then dismounts (discarding changes but could also /commit).
dism /get-imageinfo /imagefile:"c:tempinstall.wim"dism /Mount-Image /ImageFile:"c:tempinstall.wim" /index:3 /MountDir:c:wimmountdism /unmount-image /mountdir:c:wimmount /discard
You May Also Like