400-1100-266
9:00-24:00(工作日)
如果你想知道当前插在你电脑上的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小技巧之使用WMI测试服务响应
下一篇:Powershell小技巧之使用Jint引擎在PowerShell中执行Javascript函数