Below Script will help Cross vCenter Migration Write-Host “###########################################################################” Write-Host “############## Cross vCenter Migration Script Version 1.0 ###############” Write-Host “############## by Muneer Hussain. K –…
Get WWN through VMware PowerCli
Hi Below Script will get All HBA’s WWN details Get-Cluster ClusterName | Get-VMhost | Get-VMHostHBA -Type “FibreChannel” | Select VMHost,Device,@{N=”WWN”;E={“{0:X}” -f $_.PortWorldWideName}} | Sort VMhost,Device…