Quantcast
Channel: Windows Server – Yusuf Ozturk
Viewing all articles
Browse latest Browse all 127

Getting VMs with vHBA on Hyper-V Cluster with PowerShell

$
0
0
You can get VMs with vHBA on Hyper-V Cluster via this PowerShell script: Get-Cluster | Get-ClusterNode | % {Get-VM -ComputerName $_.Name | Where {(($_ | Select -expand FibreChannelHostBusAdapters) -ne $Null)}} | ft Name, ComputerName, State You should run your PowerShell as Administrator.

Viewing all articles
Browse latest Browse all 127

Trending Articles