To mount a VHDX to Windows as a drive using PowerShell, run the command: Mount-VHD -Path c:\my-folder\MyVirtualDisk.vhdx or Mount-VHD -Path c:\my-folder\MyVirtualDisk.vhdx -ReadOnly Then remove the drive again by using: Dismount-VHD -Path c:\my-folder\MyVirtualDisk.vhdx |
|