Powershell script to get Nic Driver Information
Here is a powershell script to get Nic Driver Information for a list of machines:
Foreach ($strComputer in get-content C:\MachineList.Txt)
{
$PnP = Get-WMIObject Win32_PnPSignedDriver -computer $strcomputer |where {$_.Devicename -like "HP NC*"}
$strComputer
foreach ($Nic in $PnP)
{
"NetWork Adapter Name: $($Nic.Devicename)"
"Network Adapter Driver Version: $($Nic.DriverVersion)"
}
}