Mount-DiskImage 无法识别 cmdlet

Mount-DiskImage 无法识别 cmdlet

在 Win 7 64x 上,我尝试使用 PowerShell 安装 ISO。
我尝试了几个版本的语法,但都失败了。

PowerShell Mount-DiskImage -ImagePath "C:\Users\win7\Desktop\IsoFiles\IMPORTEDDATA.iso"

关于此我得到:

找不到与参数名称“DiskImage”匹配的参数

挂载此 ISO 的正确语法是什么?

答案1

你正在运行哪个版本的 PowerShell?你的...

$env:Path
$env:PSModulePath

帮助文件为您提供答案。

挂载磁盘映像

# get function / cmdlet details
(Get-Command -Name Mount-DiskImage).Parameters
Get-help -Name Mount-DiskImage -Full
Get-help -Name Mount-DiskImage -Online
Get-help -Name Mount-DiskImage -Examples

例子

示例 1:安装 ISO

Mount-DiskImage -ImagePath“E:\ISO-Files\My US Visit Fall 2010 Pictures.iso”

此示例通过指定映像路径来挂载 ISO。

因此,与您的命令相比,它看起来很好,所以,您的系统上存在其他缺陷。

# Get parameter that accepts pipeline input
Get-Help Mount-DiskImage -Parameter * | 
Where-Object {$_.pipelineInput -match 'true'} | 
Select * 

# Get cmdlet / function parameter aliases
(Get-Command Mount-DiskImage).Parameters.Values | 
where aliases | 
select Name, Aliases | Out-GridView -PassThru -Title 'Alias results for a given cmdlet or function.'

相关内容