gpt4 book ai didi

powershell - 输出PSBound参数

转载 作者:行者123 更新时间:2023-12-03 21:41:41 25 4
gpt4 key购买 nike

我想输出已传递到脚本的任何参数的值,以包括在电子邮件中。

我已经试过了:

foreach ($psbp in $PSBoundParameters)
{
$messageBody += $psbp | out-string + "`r`n"
}

但这没有用。有人可以帮我吗?

最佳答案

$ PSBoundParameters是一个哈希表,使用GetEnumerator展开其项

foreach($psbp in $PSBoundParameters.GetEnumerator())
{
"Key={0} Value={1}" -f $psbp.Key,$psbp.Value
}




function Get-PSBoundParameters
{
[CmdletBinding()]
Param($param1,$param2,$param3)

foreach($psbp in $PSBoundParameters.GetEnumerator())
{
"Key={0} Value={1}" -f $psbp.Key,$psbp.Value
}
}


PS> Get-PSBoundParameters p1 p2 p3 | ft -a

Key=param1 Value=p1
Key=param2 Value=p2
Key=param3 Value=p3

关于powershell - 输出PSBound参数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10328083/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com