mirror of
https://github.com/fleschutz/PowerShell.git
synced 2025-08-10 13:27:41 +02:00
Renamed to list-powershell-verbs.ps1
This commit is contained in:
25
scripts/list-powershell-verbs.ps1
Executable file
25
scripts/list-powershell-verbs.ps1
Executable file
@ -0,0 +1,25 @@
|
||||
<#
|
||||
.SYNOPSIS
|
||||
Lists verbs in PowerShell
|
||||
.DESCRIPTION
|
||||
This PowerShell script lists all allowed/recommended verbs in PowerShell.
|
||||
.EXAMPLE
|
||||
PS> ./list-powershell-verbs.ps1
|
||||
|
||||
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
|
||||
}
|
Reference in New Issue
Block a user