How does the Win10 system load and eject ISO image files?

  

ISO image files are usually container files for CD, DVD or Blu-ray Disc. Although optical drives are rarely used, there are still many software vendors (especially operating system vendors) that distribute ISO image files as products. Main medium. Interestingly, the image loading function is built into the Win10 system. How does this function load and eject the ISO image?

In the past, loading (mounting) an ISO image on Windows required to be implemented by a third-party virtual drive software. Microsoft has natively supported this feature since Windows 8. Of course, users can mount and eject ISO image files directly in Windows 10 without having to install additional software. The following system geeks will introduce you to the simple steps of loading and ejecting an ISO image using Explorer and PowerShell.

Loading and popping ISO images using Explorer

By default, the default opener for .iso image files in Windows 10 is directly associated with Windows Explorer, so the easiest The method is to double-click the ISO file to achieve automatic mount. Of course, you can also right-click the ISO file and select "Load" to implement the mount.

If the current Windows 10 installed third-party software has been associated with the .iso file, you can not directly mount by double-clicking, right-clicking will not appear after "loaded" option. At this point, you can manually load the ISO by right-clicking the pop-up shortcut menu with "Open With" — "Windows Explorer".

If you want to associate the ISO file format change back to the Windows 10 default settings, that is associated with Windows Explorer, you can refer to how quickly fix the associated Windows file types.

After the ISO is loaded, Windows 10 automatically creates a virtual drive and assigns a drive letter. We can navigate directly through the left pane and view the contents.

After the run you want to uninstall mounted ISO just locate the virtual drive letter Windows 10 automatically generated "this computer", right-click and choose to "pop."

Use PowerShell to load and eject ISO image

In addition to the graphical interface, Windows 10 also supports the use PowerShell command line to load and eject ISO image, I personally think that the way it should mainly apply For scenarios such as Server Core and Nano Server.

1, open PowerShell directly use the following command to complete the ISO load:
Mount-DiskImage -ImagePath “E:\\windows_10_1607.iso”

2, use the following command The mounted ISO is popped up:
Dismount-DiskImage -ImagePath “E:\\windows_10_1607.iso”

Note: The ISO file path in the above command should be replaced with your actual environment.

Finally, let me know that the above two methods are not only applicable to ISO format images, but also to IMG image files.

Copyright © Windows knowledge All Rights Reserved