Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Severity Level: Warning
Description
This rule detects manual declarations of WhatIf and Confirm parameters in functions and cmdlets.
Rather than manually declaring these parameters, you should use the CmdletBinding attribute with
SupportsShouldProcess as a named argument.
This approach automatically provides both parameters along with built-in functionality that gives
you and your users a consistent interactive experience. Using SupportsShouldProcess is more
maintainable and provides standard behavior without extra code.
Example
Noncompliant
function foo {
param(
$param1,
$Confirm,
$WhatIf
)
}
Compliant
function foo {
[CmdletBinding(SupportsShouldProcess)]
param(
$param1
)
}