Powershell小技巧之使用WMI查询插上的U盘
程序员文章站
2022-05-08 10:10:48
如果你想知道当前插在你电脑上的usb设备,wmi能帮助你:
get-wmiobject -class win32_pnpentity |
where-obj...
如果你想知道当前插在你电脑上的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版本
上一篇: jquery 按键盘上的enter事件
下一篇: 数据库语句分类:DDL、DML、DCL