Hi all,
can someone pls help with the powershell syntax to get the Intel nic version on esxi server.
Below is for Dell and its working however same way its not working for Intel NIC though I changed the driver name
-------------------------
$dellnic = $esxcli.software.vib.list() | where {$_.name -eq "i40en"}
@{N="Dell NIC Version";E={if($dellnic){$dellnic.version}else{n/a}}}