Skip to content

Latest commit

 

History

History
36 lines (26 loc) · 828 Bytes

File metadata and controls

36 lines (26 loc) · 828 Bytes
description ms.custom ms.date ms.topic title
Use exact casing of cmdlet/function/parameter name.
PSSA v1.22.1
06/28/2023
reference
UseCorrectCasing

UseCorrectCasing

Severity Level: Information

Description

This is a style/formatting rule. PowerShell is case insensitive where applicable. The casing of cmdlet names or parameters does not matter but this rule ensures that the casing matches for consistency and also because most cmdlets/parameters start with an upper case and using that improves readability to the human eye.

How

Use exact casing of the cmdlet and its parameters, e.g. Invoke-Command { 'foo' } -RunAsAdministrator.

Example

Wrong

invoke-command { 'foo' } -runasadministrator

Correct

Invoke-Command { 'foo' } -RunAsAdministrator