gpt4 book ai didi

powershell - 从 Powershell 中的 TRAP 中排除错误代码

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

我正在运行一个脚本来获取我正在监视的某些站点的 Invoke-WebRequest 状态代码(例如 504、400、200 等)。

我正在使用 TRAP 方法将错误记录到一个文本文件中,以便以后进行分析。

代码如下:

Trap
{
write-host ("An error has occurred: "+$_.exception.message)
Write-Host ("Please see error message or log file")
$_.Exception.Message+" "+(Get-Date) | Out-File -Append "$PSScriptRoot\log.txt"
$_.Exception.InnerException.Message | Out-File -Append "$PSScriptRoot\log.txt"
$site | Out-File -Append "$PSScriptRoot\log.txt"
"---------------------------------" | Out-File -Append "$PSScriptRoot\log.txt"
}

问题:
我可以排除捕获某些错误代码,例如“503”吗?

最佳答案

不幸的是,看起来陷阱语句无法过滤或限制,因为 TRAP 始终适用于整个 SCOPE。

但是您可以做的是将 error_type 拆分为几个 TRAPS,例如:

"trap [[error_type]] {statement_list}"

关于powershell - 从 Powershell 中的 TRAP 中排除错误代码,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/62041502/

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