In this post I will share a simple PowerCLI script which generates some Network Device information from your vSphere hosts. The information you’ll get is the vmHost name, device name, linkspeed and MAC address. $vmHostNicInfo = @() foreach($vmHost in (Get-VMHost | Sort Name)){ foreach($nic in…
↧