diff --git a/powershell.md b/powershell.md index e6a847e..2f30dad 100644 --- a/powershell.md +++ b/powershell.md @@ -1,6 +1,8 @@ # Powershell name convention -|Object| Notation |Example | -|------|------------|-------------| -|Cmdlet|PascalCase |Import-Module| +| Object | Verb-Noun | Notation | Length | Plural| Prefix | Suffix | Example | +|-----------|-----------|-----------------------|--------|-------|--------|--------|---------------------| +| Cmdlet | Yes | PascalCase (for Noun) | 50 | No | Yes | No | Import-PREFIXModule | +| Function | Yes | PascalCase (for Noun) | 50 | No | Yes | No | Get-PREFIXDbRecord | +| Parameter | No | PascalCase | 30 | No | No | No | MyParameter |