Last active
February 27, 2025 13:01
-
-
Save thebentern/07d9c682176654cfe0c1 to your computer and use it in GitHub Desktop.
List connected USB devices with powershell
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
gwmi Win32_USBControllerDevice |%{[wmi]($_.Dependent)} | Sort Manufacturer,Description,DeviceID | Ft -GroupBy Manufacturer Description,Service,DeviceID |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
It doesn't returns the USD devices ID's; do you believe there is a way to get the identifiers?