如何列出集群的 id ?
How to list the cluster's id ?
如何在VMWARE PowerCLI 或VMWARE SDK 中获取集群id?我需要列出集群并为给定集群选择 ID?
Get-Datacenter
or
Get-Cluster
在 PowerCLI 中,也许是这个?不确定这是否是您要查找的 ID。
Get-Cluster | Select ID
选项 1
get-cluster | select ID
它将列出所有带有header
的集群的ID
选项 2
(get-cluster).ID
它将列出没有header
的所有集群的ID
选项 3
get-cluster MyCluster | select ID
它将列出集群 MyCluster 的 ID,其中 header
选项 4
(get-cluster MyCluster ).ID
它将列出没有 header
的集群 MyCluster 的 ID
就运行这些就知道区别了
如何在VMWARE PowerCLI 或VMWARE SDK 中获取集群id?我需要列出集群并为给定集群选择 ID?
Get-Datacenter
or
Get-Cluster
在 PowerCLI 中,也许是这个?不确定这是否是您要查找的 ID。
Get-Cluster | Select ID
选项 1
get-cluster | select ID
它将列出所有带有header
的集群的ID选项 2
(get-cluster).ID
它将列出没有header
的所有集群的ID选项 3
get-cluster MyCluster | select ID
它将列出集群 MyCluster 的 ID,其中 header
选项 4
(get-cluster MyCluster ).ID
它将列出没有 header
的集群 MyCluster 的 ID就运行这些就知道区别了