mirror of
https://github.com/fleschutz/PowerShell.git
synced 2025-08-17 08:01:31 +02:00
Added some scripts
This commit is contained in:
25
scripts/list-usb-devices.ps1
Normal file
25
scripts/list-usb-devices.ps1
Normal file
@ -0,0 +1,25 @@
|
||||
<#
|
||||
.SYNOPSIS
|
||||
Lists USB devices
|
||||
.DESCRIPTION
|
||||
This PowerShell script lists all USB devices connected to the local computer.
|
||||
.EXAMPLE
|
||||
PS> ./list-usb-devices.ps1
|
||||
|
||||
FriendlyName Status InstanceId
|
||||
------------ ------ ----------
|
||||
USB-Root-Hub (USB 3.0) OK USB\ROOT_HUB30\4&2060378&0&0
|
||||
...
|
||||
.LINK
|
||||
https://github.com/fleschutz/PowerShell
|
||||
.NOTES
|
||||
Author: Markus Fleschutz | License: CC0
|
||||
#>
|
||||
|
||||
try {
|
||||
Get-PnpDevice | Where-Object {$_.Class -eq "USB"} | Format-Table -property FriendlyName,Status,InstanceId
|
||||
exit 0 # success
|
||||
} catch {
|
||||
"⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
|
||||
exit 1
|
||||
}
|
Reference in New Issue
Block a user