How to mount ISO images on Windows 10

Windows 10 mount ISO file
Windows 10 mount ISO file (Image credit: Windows Central)

An ISO image is a container format designed to store the contents of a physical disk (CD, DVD, or Blu-ray). Software companies usually use this file format as a medium to distribute the applications and tools without the need to ship physical media, which can be costly and time-consuming. For example, Microsoft uses this format to distribute previews of Windows 10 to testers and many other products.

Although you can find a lot of tools to work with images, Windows 10 includes the ability to mount and mount ISO files natively without the need for extra software.

In this Windows 10 guide, we'll walk you through the steps to mount and unmount the ISO images using File Explorer as well as PowerShell commands.

How to mount ISO image with File Explorer

On Windows 10, you can access the content of an image in at least three different ways using File explorer. You can double-click the file, you can use the content menu option, or the option available in the ribbon menu.

Mount image with double-click

To quickly mount an ISO file on Windows 10, use these steps:

  1. Open File Explorer.
  2. Browse to the folder with the ISO image.
  3. Double-click the .iso file file to mount it.

Source: Windows Central (Image credit: Source: Windows Central)

Once you complete these steps, the ISO file will open like any other folder, allowing you to access and extract the contents as necessary.

Mount image from context menu

To mount an ISO image with the File Explorer context menu, use these steps:

  1. Open File Explorer.
  2. Browse to the folder with the ISO image.
  3. Right-click the .iso file and select the Mount option.

Source: Windows Central (Image credit: Source: Windows Central)

Once you complete the steps, you can access the contents of the image by selecting the virtual drive from the left navigation pane.

Mount image from ribbon menu

To mount an image with the ribbon menu, use these steps:

  1. Open File Explorer.
  2. Browse to the folder with the ISO image.
  3. Select the .iso file.
  4. Click the Disk Image Tools tab.
  5. Click the Mount button.

Source: Windows Central (Image credit: Source: Windows Central)

If you have a third-party tool to open compressed files (such as .zip, .tar, .rar, etc.), it's possible the tool may also be configured as the default application to open ISO images. When this happens, you won't see an option to mount images. However, you can still right-click, select the Open with submenu, and select the Windows Explorer option to mount the ISO.

Unmount image

Once you are no longer using the image, you can quickly unmount the file by right-clicking the virtual drive under This PC in File Explorer and selecting the Eject option.

  1. Open File Explorer.
  2. Expand This PC from the left navigation pane.
  3. Right-click the virtual drive and select the Eject option.

Source: Windows Central (Image credit: Source: Windows Central)

After you complete these steps, the image will no longer be accessible until you mount it again.

How to mount ISO image with PowerShell

It's also possible to mount and unmount an image using commands with PowerShell.

Mount ISO image command

To mount an ISO image using a PowerShell command, use these steps:

  1. Open Start.
  2. Search for PowerShell, right-click the top result, and select the Run as administrator option.
  3. Type the following command to mount an ISO image and press Enter:Mount-DiskImage -ImagePath "PATH\TO\ISOFILE"In the command, make sure to replace the "PATH\TO\ISOFILE" with the actual path of the .iso file.For example, this command mounts an image in the "E:\" virtual drive:Mount-DiskImage -ImagePath "E:\Windows10.iso"

Source: Windows Central (Image credit: Source: Windows Central)

Once you complete the steps, the ISO image will mount, and you will be able to access the contents to install the application or extract the image contents from the newly-available drive letter.

Unmount ISO image command

To unmount an image with PowerShell, use these steps:

  1. Open Start.
  2. Search for PowerShell, right-click the top result, and select the Run as administrator option.
  3. Type the following command to mount an ISO image and press Enter:Dismount-DiskImage -ImagePath "PATH\TO\ISOFILE"In the command, make sure to replace the "PATH\TO\ISOFILE" with the actual path of the .iso file.For example, this command removes the mount for an image in the "E:\" virtual drive:Dismount-DiskImage -ImagePath "E:\Windows10.iso"

Source: Windows Central (Image credit: Source: Windows Central)

After you complete the steps, the virtual drive will be removed, and the image will no longer be accessible until you mount it again.

Mauro Huculak

Mauro Huculak is technical writer for WindowsCentral.com. His primary focus is to write comprehensive how-tos to help users get the most out of Windows 10 and its many related technologies. He has an IT background with professional certifications from Microsoft, Cisco, and CompTIA, and he's a recognized member of the Microsoft MVP community.