How to Mount or Unmount ISO and IMG Files in Windows 11

We show you several ways how to mount or unmount ISO files and IMG files in Windows 11.

Featured - Mount or Unmount ISO and IMG File in Windows 11

ISO images hold the information on physical media like CDs, DVDs, and Blu-ray discs in an archival file format using the file ending “.ISO”. Software makers and developers employ ISO files to deliver programs, utilities, and in this format which then can be used to create exact physical copies of those CDs, DVDs, and Blu-ray discs or to attach (mount) those as virtual discs directly to a running system

For a long time, Windows didn't provide built-in support for ISOs. Before Windows 8, you had to utilize third-party utilities. What you should know about ISOs on is provided below.

The difference between ISO and IMG files

The older IMG file format was designed to allow exact backup copies of floppy disks in a single file, just as ISO does for optical discs. It works by creating a bitmap of each sector of the disk that has been written to. Since the demise of floppy disks, the IMG format has been primarily used for the creation of hard disk image files.

You may view the entire contents of an ISO image or an IMG image when you mount it on Windows 11. ISO files can be used to distribute software via bootable media images and IMG files to create exact copies of hard drives/SSDs as backups or for easy deployment of similar workstations in large organizations.

When you mount an ISO file / IMG file, your computer will handle it as if you had loaded/connected a CD, DVD, Blu-ray disc, or HDD/SSD on your system

How to Mount ISO or IMG files Opening Them Directly

You should always proceed with care when mounting ISO files since they may include malware or other potentially unwanted applications. In Windows 11, you can mount ISO / unmount ISO files in a straightforward way by just opening them.

  1. Double Click to mount the ISO File on your system

    Windows 11 - File Explorer - Double Click to Open Iso

  2. OR Select the ISO file and press “Enter” to mount it

    Windows 11 - File Explorer - Select Iso - Press Enter

How to Mount ISO or IMG files from File Explorer Command Bar

You can also mount the ISO file with the Command Bar as shown in the following step.

  1. Click on the ISO file, select the three dots at the top right corner and choose “Mount” from the options

    Windows 11 - File Explorer - Select Iso - Mount

How to Mount ISO or IMG files using the Mount Context Menu

You can mount the ISO file by right-clicking on it.

  1. Right-click on the ISO file and select “Mount” from the context menu options  

    Windows 11 - File Explorer - Context Menu Iso File - Mount

How to Mount ISO or IMG files using the “Open with”-Context Menu

You can also mount the ISO file using the “Open with” option from the context menu.

  1. Right-click on the ISO file, select “Open with”, and choose “Windows Explorer”

    Windows 11 - File Explorer - Context Menu Iso File - Open With - Windows Explorer

How to Unmount ISO or IMG files using Eject

Unmounting ISO files / IMG files is as easy as mounting them. Just follow along with the following procedure.

  1. Select the mounted ISO file, click on the three dots at the top right corner, and select “Eject” 

    Windows 11 - This PC - Select Select Mounted Iso - Eject

  2. Right-click on the mounted ISO file and select “Eject” from the context menu

    Windows 11 - This PC - Context Menu Mounted Iso - Eject

How to Mount or Unmount ISO or IMG files in PowerShell

You can also use PowerShell to mount or unmount ISO images and files. 

  1. Right-click on the “Windows” icon and select “Terminal” from the context menu

    This particular step will open up the terminal app where you can access Windows Powershell.
    Windows 11 - Open Windows Terminal -

  2. Click on the “Keyboard Down” icon and select “Windows PowerShell” from the context menu options

    Windows 11 - Windows Terminal - Open PowerShell

  3. Type in the following command to mount the ISO file / IMG file:
    Mount-DiskImage -ImagePath YOUR_ISO_File_Location

    Paste the path of your ISO file in the command, and it will mount that specific ISO file.

    Windows 11 - PowerShell - Enter the Cmd to Mount Iso

  4. Type in the following command to assign the desired drive letter to the mounted ISO file / IMG file
    Dismount-DiskImage -DevicePath YOUR_Drive

    In the command above, replace <Your Drive> with the DVD drive letter (for example, “E”) of the mounted ISO or IMG file you want to unmount.

    Windows 11 - PowerShell - Enter the Cmd to Unmount Iso

  5. Type in the following command to unmount the ISO file / IMG file using PowerShell
    Dismount-DiskImage -DevicePath "Filepath"

    ALternatively, paste the path of your ISO file in the command, and it will unmount that specific ISO file or IMG file.

    Windows 11 - PowerShell - Enter the Cmd to Unmount Iso

How to Mount or Unmount ISO files / IMG files in Command Prompt

  1. Right-click on the “Windows” icon and select “Terminal” from the context menu
    Windows 11 - Open Windows Terminal -
  2. Select the “Command Prompt” from the dropdown options

    Windows 11 - Windows Terminal - Open Cmd Prompt

  3. Type in the following command to mount the ISO file / IMG file using the command prompt
    PowerShell Mount-DiskImage -ImagePath "path of ISO File"

Use the complete path and filename of the ISO file in the above command instead of “path of ISO File”, and it will mount that specific ISO file.

Windows 11 - Windows Terminal - Cmd Prompt - Enter the Cmd to Mount Iso

Unmount the ISO file / IMG file using Command Prompt through the following command

PowerShell Dismount-DiskImage -DevicePath \\.\<drive letter>

Paste the DVD letter of the mounted ISO file in the above command to unmount that ISO file / IMG file.

Windows 11 - Windows Terminal - Cmd Prompt - Enter the Cmd to Unmount Iso

You can also use the following command to unmount the ISO file / IMG file using the command prompt

PowerShell Dismount-DiskImage -ImagePath <ISO FILE PATH>

In the above command, paste the full path of the ISO file to unmount.

Windows 11 - Windows Terminal - Cmd Prompt - Enter the Cmd to Unmount Iso