2019-8-30-PowerShell-通过-WMI-获取系统安装的驱动

title author date CreateTime categories
PowerShell 通过 WMI 获取系统安装的驱动
lindexi
2019-08-30 08:58:39 +0800
2019-02-21 20:18:57 +0800
PowerShell WMI

本文告诉大家如何通过 WMI 获取用户已经安装的驱动程序

通过下面代码可以获取用户已经安装的驱动程序

Get-WmiObject Win32_SystemDriver | Format-List Caption,Name,State

运行代码

Caption : Windows Driver Foundation - User-mode Driver Framework Reflector
Name    : WUDFRd
State   : Running

Caption : WPD 文件系统驱动程序
Name    : WUDFWpdFs
State   : Running

Caption : XINPUT HID 筛选器驱动程序
Name    : xinputhid
State   : Stopped

驱动的内容很多,我就不全部放在代码

如果需要通过 PowerShell 获取系统安装的驱动的日期和安装的路径,请加上 InstallDate 驱动日期 PathName 请看代码

Get-WmiObject Win32_SystemDriver | Format-List Caption,Name,State,InstallDate,PathName

Win32_SystemDriver class - Windows applications

posted @ 2019-11-21 16:05  lindexi  阅读(79)  评论(0编辑  收藏  举报