Added some scripts

This commit is contained in:
Markus Fleschutz
2024-05-30 14:08:00 +02:00
parent 5dd0c7ce9f
commit 6f8f29de3c
5 changed files with 105 additions and 5 deletions

View File

@ -0,0 +1,25 @@
<#
.SYNOPSIS
Lists system devices
.DESCRIPTION
This PowerShell script lists all system devices connected to the local computer.
.EXAMPLE
PS> ./list-system-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 "System"} | Format-Table -property FriendlyName,Status,InstanceId
exit 0 # success
} catch {
"⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
exit 1
}