PowerCLI New-CDDrive - 无效的数据存储路径

PowerCLI New-CDDrive - invalid datastore path

我正在尝试使用 VMWare PowerCLI 从数据存储挂载 iso。代码示例:

$IsoPath = "vmstores:.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:.2.2.1900443\datacenter1\datastore1\files.iso'

路径有效。我确认:

Get-ChildItem "vmstores:.2.2.1900443\datacenter1\datastore1\files.iso"

输出:

Name               Type               Id
----               ----               --
Files.iso          DatastoreFile

命令有什么问题?

我猜想 vmstores: 驱动器在您的本地系统上是一个 PowerShell Provider 可用的,但是 VHost 对此一无所知,并且路径需要采用它理解的形式,例如'[DatastoreName] folder\folder2\file.iso'.