Mount-DiskImage가 인식되지 않는 cmdlet 사용하여 ISO를 마운트하려고합니다. 여러 버전의

Win 7 64x에서 PowerShell을 사용하여 ISO를 마운트하려고합니다.
여러 버전의 구문을 시도했지만 모두 실패했습니다.

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

이것에 나는 얻는다 :

매개 변수 이름 ‘DiskImage’와 일치하는 매개 변수를 찾을 수 없습니다.

이 ISO를 마운트하는 올바른 구문은 무엇입니까?



답변

어떤 버전의 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 \ 내 미국 방문 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.'


답변