PowerTip: Use PowerShell to Identify Network Drivers in Configuration Manager

Doctor Scripto

Summary: Use the Configuration Manager cmdlets in Windows PowerShell to identify all network drivers.

Hey, Scripting Guy! Question 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?

Hey, Scripting Guy! Answer 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.

0 comments

Discussion is closed.

Feedback usabilla icon