我正在尝试使用VMWare PowerCLI从数据存储中装载iso。代码示例:
$IsoPath = "vmstores:\1.2.2.1900443\datacenter1\datastore1\files.iso"
$cd = New-CDDrive -VM Vm001 -ISOPath $IsoPath
此操作失败,并显示错误:New-CDDrive The operation for the entity "Vm001" failed with the following message: "Invalid datastore path 'vmstores:\1.2.2.1900443\datacenter1\datastore1\files.iso'
该路径有效。我确认:
Get-ChildItem "vmstores:\1.2.2.1900443\datacenter1\datastore1\files.iso"
输出:
Name Type Id
---- ---- --
Files.iso DatastoreFile
命令出了什么问题?
答案 0 :(得分:1)
我猜想vmstores:
驱动器在您的本地系统上是PowerShell Provider可用,但是VHost对此一无所知,并且路径必须采用其理解的形式,例如'[DatastoreName] folder\folder2\file.iso'
。