Powershell小技巧之捕获脚本内部的异常
先看一个脚本文件: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脚本文件的内容改成: 代码如