对于像-WhatIf这样的事情,我们有[CmdletBinding]属性给我们的$PSCmdlet.ShouldProcess()。是否有其他类似的工具或实践来实现常见的命令行参数,如-Verbose、-Debug、-PassThru等?
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
获取更多信息