| description | ms.date | ms.topic | title |
|---|---|---|---|
Avoid reserved words as function names |
08/31/2025 |
reference |
AvoidReservedWordsAsFunctionNames |
Severity Level: Warning
Avoid using reserved words as function names. Using reserved words as function names can cause errors or unexpected behavior in scripts.
Avoid using any of the reserved words as function names. Choose a different name that's not a reserved word.
See about_Reserved_Words for a list of reserved words in PowerShell.
# Function is a reserved word
function function {
Write-Host "Hello, World!"
}# myFunction is not a reserved word
function myFunction {
Write-Host "Hello, World!"
}