7 lines
177 B
PowerShell
7 lines
177 B
PowerShell
|
|
function Get-Driver {
|
||
|
|
Get-CimInstance -Class Win32_PnPSignedDriver | Select-Object DriverProviderName,
|
||
|
|
FriendlyName,
|
||
|
|
Description,
|
||
|
|
DriverVersion,
|
||
|
|
DriverDate
|
||
|
|
}
|