Powershell小技巧之使用WMI查询插上的U盘
Powershell小技巧之使用WMI查询插上的U盘
发布时间:2016-12-28 来源:查字典编辑
摘要:如果你想知道当前插在你电脑上的USB设备,WMI能帮助你:Get-WmiObject-ClassWin32_PnPEntity|Where-...

如果你想知道当前插在你电脑上的USB设备,WMI能帮助你:

Get-WmiObject -Class Win32_PnPEntity | Where-Object { $_.DeviceID -like 'USBSTOR*' }

这将返回所有插上在使用的USBSTOR设备类

如果你使用WMI查询语言(WQL),你甚至可以使用筛选命令:

Get-WmiObject -Query 'Select * From Win32_PnPEntity where DeviceID Like "USBSTOR%"'

本方法适合所有的powershell版本

推荐文章
猜你喜欢
附近的人在看
推荐阅读
拓展阅读
相关阅读
网友关注
最新PowerShell学习
热门PowerShell学习
脚本专栏子分类