Powershell查询插上的U盘


支持所有版本

如果你想知道当前插在你电脑上的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%"'

原文地址:Finding Attached USB Sticks

 

 

本文链接: https://www.pstips.net/finding-attached-usb-sticks.html
请尊重原作者和编辑的辛勤劳动,欢迎转载,并注明出处!

发表评论

您的电子邮箱地址不会被公开。 必填项已用 * 标注