function Show-Verbs { <# .SYNOPSIS Show the verbs so I can figure out which one I want #> param( [Parameter(Mandatory = $false, Position = 0)] [string]$VerbPartial ) $verbs = (Get-Verb).Verb [array]$matchedVerbs = $verbs.Where({$_ -match $VerbPartial}) | Sort-Object # TODO: If verbs list is empty, give a better error message Show-ListAsTable $matchedVerbs }