LessClicks's Posts

Struggling with this one, I know in powercli I can run a for each loop to get at a list of port group names that are present for a specific cluster. $Networks = (Get-Cluster ClusterNAme).ExtensionDa... See more...
Struggling with this one, I know in powercli I can run a for each loop to get at a list of port group names that are present for a specific cluster. $Networks = (Get-Cluster ClusterNAme).ExtensionData.Network foreach ($Network in $Networks){get-view $Network -Property name |Select name} Has anyone done this with an API call?