Summary: Use the Configuration Manager cmdlets in Windows PowerShell to identify all network drivers.
I deal with drivers detection issues in Windows PE because we have too many network card drivers.
How can I use Windows PowerShell to quickly show all of the network drivers in Configuration Manager?
Use the Get-CmDriver cmdlet and filter on the DriverClass property, for example:
$DriverClass=’Net’
Get-CmDriver | Where { $_.DriverClass –match $DriverClass }
You can pipe this object to Select-Object to choose the information most relevant to you.