Powershell小技巧之捕获脚本内部的异常

Letitia ·
更新时间:2024-11-10
· 782 次阅读

先看一个脚本文件: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.

于是我想是不是因为终止错误与非终止错误的区别:所以还写了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的问题,这样改就OK啦:

代码如下:
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。

您可能感兴趣的文章:收集的48个Shell脚本小技巧Shell脚本echo指令使用小技巧Shell脚本计算字符串长度和判断字符串为空小技巧写出健壮Bash Shell脚本的一些技巧总结PowerShell脚本性能优化技巧总结Powershell小技巧之查找脚本中的函数Powershell小技巧之记录脚本的操作Powershell小技巧之找出脚本中的错误十三个写好shell脚本的技巧分享



异常 捕获 技巧 PowerShell 脚本

需要 登录 后方可回复, 如果你还没有账号请 注册新账号