description | ms.date | ms.topic | title |
---|---|---|---|
Avoid Using ShouldContinue Without Boolean Force Parameter |
06/28/2023 |
reference |
AvoidShouldContinueWithoutForce |
Severity Level: Warning
Functions that use ShouldContinue should have a boolean force parameter to allow user to bypass it.
You can get more details by running Get-Help about_Functions_CmdletBindingAttribute
and
Get-Help about_Functions_Advanced_Methods
command in PowerShell.
Call the ShouldContinue
method in advanced functions when ShouldProcess
method returns $true
.
Function Test-ShouldContinue
{
[CmdletBinding(SupportsShouldProcess=$true)]
Param
(
$MyString = 'blah'
)
if ($PsCmdlet.ShouldContinue('ShouldContinue Query', 'ShouldContinue Caption'))
{
...
}
}
Function Test-ShouldContinue
{
[CmdletBinding(SupportsShouldProcess=$true)]
Param
(
$MyString = 'blah',
[Switch]$Force
)
if ($Force -or $PsCmdlet.ShouldContinue('ShouldContinue Query', 'ShouldContinue Caption'))
{
...
}
}