If the Win10 system does not have the menu option "Mount ISO", use the PowerShell command line to load

It is rumored that the Win10 system does not need to install a virtual CD-ROM drive. Right-click the .iso file in the resource manager and select "Load" in the menu to create a virtual CD-ROM drive from the .iso file.

 

But why is there no "Load" in the right-click menu of my Win10 system? How to solve?

Reference link:

https://www.sysgeek.cn/windows-10-mount-unmount-iso/

Mount and eject ISO images using PowerShell

Windows 10 also supports mounting and ejecting ISO images using the PowerShell command line,

Open PowerShell and use the following command directly to complete the ISO mount:

Mount-DiskImage -ImagePath "E:\windows_10_1607.iso"


 

To eject the mounted ISO, use the following command:

Dismount-DiskImage -ImagePath "E:\windows_10_1607.iso"

Note: Please replace the iso file path in the above command with your actual environment.

The above method is not only applicable to ISO format images, but also applicable to IMG image files.

Guess you like

Origin blog.csdn.net/Scott0902/article/details/128479985