ErrorAction默认在PowerShell脚本中停止

时间:2019-10-08 09:59:07

标签: powershell

如何在PowerShell脚本中设置所有动作的ErrorAction属性设置为Stop?

P.S.:Powershell 2.0

1 个答案:

答案 0 :(得分:3)

设置$ErrorActionPreference以使脚本停止:

$ErrorActionPreference = "Stop"

edit:正如ivan-mirchev所指出的那样,此更改当然不是永久的,仅在执行代码的运行空间中有效。当您打开一个新的Powershell会话时,它将具有默认值$ErrorAction = 'Continue'