You can use this script to get virtual machines which has Virtual HBA support. 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 $Servers = Get-Content C:\hosts.txt foreach ($Server in $Servers) { $VMs = Get-VM -ComputerName $Server Write-Host $Server foreach ($VM in $VMs) { $TestFC = $VM | Select [...]
↧