search
top

How To Mount and Unmount ISO files using PowerShell

Withe Windows 10 the ability to mount ISO files (disk images) was added and you no longer have to use third party tools to mount them. In these post we will cover how to mount and unmount using PowerShell. Very simple and easy to execute.

Open PowerShell as Administrator. Use the Mount-DiskImage cmdlet to mount the ISO. Syntax is:

Mount-DiskImage -ImagePath "C:\FILE.ISO"

Example:

The drive will show as a DVD device.

All done using the ISO, time to dismount it. Syntax is:

Dismount-DiskImage -ImagePath "C:\FILE.ISO"

Example:

Leave a Reply

Your email address will not be published. Required fields are marked *

This site uses Akismet to reduce spam. Learn how your comment data is processed.

top