PowerShell 向您的cmdlet添加-WhatIf和-Confirm支持

示例

function Invoke-MyCmdlet {
    [CmdletBinding(SupportsShouldProcess = $true)]
    param()
    # ...
}