Huangguohao 2019-06-13
先看一个脚本文件: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
代码如下:
dir D:\ShenMaDoushiFuYun #目录不存在
于是我想是不是因为终止错误与非终止错误的区别:所以还写了try catch捕获语句,双管齐下:
代码如下:
trap [exception] { '在trap中捕获到脚本异常' $_.Exception.Message continue } try{ .\3.three.test.ps1 } catch{ '在catch中捕获到脚本异常' $_.Exception.Message }
看来问题不在这里。事实上是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.