对于像-WhatIf这样的东西,我们有[CmdletBinding]属性给我们的$ PSCmdlet.ShouldProcess()。是否有其他此类工具或实践来实现常见的命令行参数,如-Verbose,-Debug,-PassThru等?
答案 0 :(得分:15)
Write-Debug
和Write-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
。