PowerShell脚本trap语句捕获异常方法

发布时间:2019-10-27编辑:脚本学堂
本文介绍了PowerShell脚本trap语句捕获异常的方法,PowerShell中trap语句的用法,使用它来捕获程序异常,需要的朋友参考下。

Powershell/ target=_blank class=infotextkey>shell脚本trap语句捕获异常写法

一个脚本文件:
3.three.test.ps1
Get-FanBingbing #命令不存在

捕获异常:
 

复制代码 代码示例:
trap [exception]
{
 '在trap中捕获到脚本异常'
 $_.Exception.Message
 continue
}
.3.three.test.ps1

异常捕获成功,输出:
在trap中捕获到脚本异常
The term 'Get-FanBingbing' is not recognized as the name of a cmdlet

接下来把3.three.test.ps1脚本文件的内容修改为:
dir D:ShenMaDoushiFuYun #目录不存在

再运行,这时没有捕获到异常,错误为:dir : Cannot find path ‘D:ShenMaDoushiFuYun' because it does not exist.(脚本学堂 www.jb200.com 编辑整理)
可能是终止错误与非终止错误的区别:所以写了try catch捕获语句,双管齐下:
 

复制代码 代码示例:
trap [exception]
{
 '在trap中捕获到脚本异常'
 $_.Exception.Message
 continue
}
try{
.3.three.test.ps1
}
catch{
 '在catch中捕获到脚本异常'
 $_.Exception.Message
}

异常仍旧:dir : Cannot find path ‘D:ShenMaDoushiFuYun' because it does not exist.
问题不在于此。

事实上是ErrorActionReference的问题,按如下修改:
 

复制代码 代码示例:
trap [exception]
{
 '在trap中捕获到脚本异常'
 $_.Exception.Message
 continue
}
$ErrorActionPreference='stop'
.3.three.test.ps1

输出结果:
在trap中捕获到脚本异常
Cannot find path 'D:ShenMaDoushiFuYun' because it does not exist.

问题分析:
像Get-FanBingbing这样的异常,是因为命令不存在,确切来讲属于语法错误,级别比较高被trap到了。
但是像目录找不到这样的异常,相对而言级别比较低,默认不能捕获到,除非显示指定ErrorAction为stop。

以上就是powershell脚本trap语句捕获异常的方法与实例,希望对大家有所帮助。