Powershell:如何实现标准交换机?

时间:2011-08-03 19:06:26

标签: debugging powershell command-line-arguments passthru verbose

对于像-WhatIf这样的东西,我们有[CmdletBinding]属性给我们的$ PSCmdlet.ShouldProcess()。是否有其他此类工具或实践来实现常见的命令行参数,如-Verbose,-Debug,-PassThru等?

1 个答案:

答案 0 :(得分:15)

Write-DebugWrite-Verbose会自动处理-Debug-Verbose个参数。

-PassThru在技术上不是一个常用参数,但您可以像以下一样实现它:

function PassTest {
    param(
        [switch] $PassThru
    )
    process {
        if($PassThru) {$_}
    }
}

1..10|PassTest -PassThru

这是在cmdlet上使用函数的PassThru值的示例:

function Add-ScriptProperty {
    param(
        [string] $Name,
        [ScriptBlock] $Value,
        [switch] $PassThru
    )
    process{
        # Use ":" to explicitly set the value on a switch parameter
        $_| Add-Member -MemberType ScriptProperty -Name $Name -Value $Value `
            -PassThru:$PassThru 
    }
}

$calc = Start-Process calc -PassThru|
        Add-ScriptProperty -Name SecondsOld `
            -Value {((Get-Date)-$this.StartTime).TotalSeconds} -PassThru
sleep 5
$calc.SecondsOld

有关详细信息,请查看Get-Help about_CommonParameters