Cannot mount an ISO image file with PowerShell

-1
PS F:\ISOs\System>  [System.Environment]::OSVersion.Version



Major  Minor  Build  Revision
-----  -----  -----  --------
10     0      14393  0

PS F:\ISOs\System> dir


Directory: F:\ISOs\System


Mode                LastWriteTime         Length Name
----                -------------         ------ ----
...
-a----        11/1/2013     13:32      134971392 Win7PE2.iso
...

PS F:\ISOs\System> Mount-DiskImage -ImagePath .\Win7PE2.iso -Verbose
Mount-DiskImage : The system cannot find the file specified.
At line:1 char:1
+ Mount-DiskImage -ImagePath .\Win7PE2.iso -Verbose
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+ CategoryInfo          : ObjectNotFound: (MSFT_DiskImage:ROOT/Microsoft/.../MSFT_DiskImage) [Mount-DiskImage], CimException
+ FullyQualifiedErrorId : HRESULT 0x80070002,Mount-DiskImage

How to solve this problem?

windows
windows-10
powershell
asked on Super User Oct 11, 2016 by TRX • edited Jan 1, 2017 by Run5k

3 Answers

4

You need to specify the full path to the .ISO file.

e.g.:

Mount-DiskImage -ImagePath 'F:\ISOs\System\Win7PE2.iso' -Verbose

From Microsoft's Mount-DiskImage TechNet entry, and from Get-Help Mount-DiskImage within PowerShell:

This cmdlet requires the full path of the VHD or ISO file.

answered on Super User Oct 11, 2016 by Ƭᴇcʜιᴇ007
1

In case you'd like to use it in a script or you are too lazy to type the full path (as I am), you can go with:

Mount-DiskImage ((Get-Item -Path ".\" -Verbose).FullName+"\ISONAME.iso")
answered on Super User Oct 5, 2017 by Kristian Kraljic
0

My option:

$mountResult = Mount-DiskImage (Get-Item $iso).VersionInfo.FileName -PassThru -ErrorAction Stop

where $iso contains relative or absolute path

answered on Super User Jan 14, 2020 by Syc

User contributions licensed under CC BY-SA 3.0