mirror of
https://github.com/fleschutz/PowerShell.git
synced 2024-11-08 00:54:04 +01:00
26 lines
696 B
PowerShell
Executable File
26 lines
696 B
PowerShell
Executable File
<#
|
|
.SYNOPSIS
|
|
Lists SCSI devices
|
|
.DESCRIPTION
|
|
This PowerShell script lists all SCSI devices connected to the local computer.
|
|
.EXAMPLE
|
|
PS> ./list-scsi-devices.ps1
|
|
|
|
FriendlyName Status InstanceId
|
|
------------ ------ ----------
|
|
Microsoft-Controller OK ROOT\SPACEPORT\0000
|
|
...
|
|
.LINK
|
|
https://github.com/fleschutz/PowerShell
|
|
.NOTES
|
|
Author: Markus Fleschutz | License: CC0
|
|
#>
|
|
|
|
try {
|
|
Get-PnpDevice | Where-Object {$_.Class -like "SCSI*"} | Sort-Object -property FriendlyName | Format-Table -property FriendlyName,Status,InstanceId
|
|
exit 0 # success
|
|
} catch {
|
|
"⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
|
|
exit 1
|
|
}
|