Powershell script to list machines running the out of date e1000 Adapter in Windows so you can update them to VMXnet3 !
Get-VM | Where{(Get-NetworkAdapter -VM $_ | where{$_.Type -eq 'e1000'}) -and (Get-VMguest -VM $_ | Where-Object {$_.OSFullName -like "*Windows Server*"})} | Select Name,@{N='vCenter';E={$_.Uid.Split('@')[1].Split(':')[0]}}
Powered by WordPress | Made with ❤ by Themely