gpt4 book ai didi

powershell - Powershell : errorhandling in script

转载 作者:行者123 更新时间:2023-12-03 07:51:02 27 4
gpt4 key购买 nike

我有一个要在多台本地计算机上运行的脚本,但是我没有在其中进行任何错误处理。我根本没有在powershell中进行任何错误处理,因此我在这里完全是菜鸟。我读了一些有关它的内容,但老实说,我只是在寻找一个快速简便的答案。

问:是否有类似try/catch之类的东西,请尽可能少的代码使脚本不繁重?

最佳答案

是的,在Powershell v2中可以使用try/catch/finally:

Try{
<main code here>
}
Catch{
write-host $_ #Using the reserved $_ variable which should contain the error string
}
Finally{
<clean up code here - will execute regardless>
}

如果必须使用Powershell v1,则必须使用trap构造。

关于powershell - Powershell : errorhandling in script,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10193295/

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