mirror of
https://github.com/fleschutz/PowerShell.git
synced 2024-11-15 12:34:25 +01:00
25 lines
451 B
PowerShell
25 lines
451 B
PowerShell
|
<#
|
|||
|
.SYNOPSIS
|
|||
|
Lists verbs
|
|||
|
.DESCRIPTION
|
|||
|
This PowerShell script lists all allowed verbs.
|
|||
|
.EXAMPLE
|
|||
|
PS> ./list-verbs
|
|||
|
|
|||
|
Verb Group
|
|||
|
---- -----
|
|||
|
Add Common
|
|||
|
...
|
|||
|
.LINK
|
|||
|
https://github.com/fleschutz/PowerShell
|
|||
|
.NOTES
|
|||
|
Author: Markus Fleschutz | License: CC0
|
|||
|
#>
|
|||
|
|
|||
|
try {
|
|||
|
Get-Verb | Sort-Object -Property Verb
|
|||
|
exit 0 # success
|
|||
|
} catch {
|
|||
|
"⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
|
|||
|
exit 1
|
|||
|
}
|