Skip to content

PowerShell 通过 WMI 获取系统安装的驱动

Updated: at 08:22,Created: at 00:58

本文告诉大家如何通过 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


知识共享许可协议

原文链接: http://blog.lindexi.com/post/PowerShell-%E9%80%9A%E8%BF%87-WMI-%E8%8E%B7%E5%8F%96%E7%B3%BB%E7%BB%9F%E5%AE%89%E8%A3%85%E7%9A%84%E9%A9%B1%E5%8A%A8

本作品采用 知识共享署名-非商业性使用-相同方式共享 4.0 国际许可协议 进行许可。 欢迎转载、使用、重新发布,但务必保留文章署名 林德熙 (包含链接: https://blog.lindexi.com ),不得用于商业目的,基于本文修改后的作品务必以相同的许可发布。如有任何疑问,请与我 联系