欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

Powershell小技巧之使用WMI查询插上的U盘

程序员文章站 2022-11-15 17:52:28
如果你想知道当前插在你电脑上的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版本