我正在尝试使用powercli在VMware vSphere中的特定数据存储的ISO目录中列出所有iso文件。我可以使用以下命令列出所有数据存储区中的所有iso,但不能针对特定数据存储区列出。
dir vmstores:\-递归-include * .iso |选择名称,FolderPath
答案 0 :(得分:0)
我认为您需要做更多类似的事情:
dir vmstore:\datacentername\datastorename -Recurse -Include *.iso | Select Name, FolderPath
答案 1 :(得分:0)
我发现下面的命令有效。
$ datastoreName ='enter_name_of_datastore'
$ ds =获取数据存储区-名称$ datastoreName
New-PSDrive-位置$ ds-名称DS -PSProvider VimDatastore-根'\'|空空
Get-ChildItem-路径DS:\ ISO-包括* .iso-递归|选择名称,FolderPath
删除PSDrive-名称DS-确认:$ false