0 Pluspunkte 0 Minuspunkte
Wie kann ich eine Liste aller angeschlossenen USB Geräte (wie lsusb in Linux) in Powershell anzeigen?
von  

1 Antwort

0 Pluspunkte 0 Minuspunkte

Mit dem Cmdlet Get-WmiObject.

Get-WmiObject Win32_USBControllerDevice | ForEach-Object { [wmi]($_.Dependent) } | Select-Object -Property DeviceID, Description | Format-Table -AutoSize
von