gpt4 book ai didi

powershell - 在 Powershell 中优雅地停止

转载 作者:行者123 更新时间:2023-12-02 23:24:37 26 4
gpt4 key购买 nike

如何在 PowerShell 脚本中捕获并处理 Ctrl+C?据我了解,我可以通过包含 Powershell.Stop() 方法的重写,从 v2 中的 cmdlet 执行此操作,但我找不到在脚本中使用的类似方法。

我当前正在执行清理 via an end block ,但是当脚本被取消时我需要执行额外的工作(而不是运行到完成)。

最佳答案

documentation对于 try-catch-finally 说:

A Finally block runs even if you use CTRL+C to stop the script. A Finallyblock also runs if an Exit keyword stops the script from within a Catchblock.

请参阅以下示例。运行它并按 ctrl-c 取消它。

try
{
while($true)
{
"Working.."
Start-Sleep -Seconds 1
}
}
finally
{
write-host "Ended work."
}

关于powershell - 在 Powershell 中优雅地停止,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1710698/

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