VMware Cloud Community
Chakoe1
Contributor
Contributor
Jump to solution

Identify Standalone-ESX vs Cluster-ESX?

Hi all,

is there a reliable way to identify Cluster-ESX (vmotion,HA ) vs standalone-ESX in a folder via Get-View - Viewtype Hostsystem?

Thx in advance

Chakoe

0 Kudos
1 Solution

Accepted Solutions
LucD
Leadership
Leadership
Jump to solution

You can find ESXi nodes that belong to a cluster with this

Get-View -ViewType HostSystem | Where{$_.Parent -match 'ClusterComputeResource'} | select Name


Blog: lucd.info  Twitter: @LucD22  Co-author PowerCLI Reference

View solution in original post

0 Kudos
1 Reply
LucD
Leadership
Leadership
Jump to solution

You can find ESXi nodes that belong to a cluster with this

Get-View -ViewType HostSystem | Where{$_.Parent -match 'ClusterComputeResource'} | select Name


Blog: lucd.info  Twitter: @LucD22  Co-author PowerCLI Reference

0 Kudos