Pattern: Use of unapproved verb
Issue: -
Checks that all defined cmdlets use approved verbs. This is in line with PowerShell's best practices.
Approved verbs can be found by running the command Get-Verb
.
Change the verb in the cmdlet's name to an approved verb.
Example of incorrect code:
function Change-Item
{
...
}
Example of correct code:
function Update-Item
{
...
}