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.
↧