脚本之家,脚本语言编程技术及教程分享平台!
分类导航

Python|VBS|Ruby|Lua|perl|VBA|Golang|PowerShell|Erlang|autoit|Dos|bat|

服务器之家 - 脚本之家 - PowerShell - PowerShell中捕获异常时的行号和列号的方法

PowerShell中捕获异常时的行号和列号的方法

2020-06-01 11:37PowerShell教程网 PowerShell

这篇文章主要介绍了PowerShell中捕获异常时的行号和列号的方法,使用$_.InvocationInfo变量实现获取,需要的朋友可以参考下

如果自己写函数动态地去执行一些脚本块或者脚本文件,那么捕获到异常时行号和列号信息非常有用。例如脚本文件:

复制代码 代码如下:

trap{
$info=$_.InvocationInfo
"在第{0}行,第{1}列捕获到异常:{2}" -f $info.ScriptLineNumber,$info.OffsetInLine ,$_.Exception.Message
continue
}
 
get-date
1gb/2kb
Get-Service | foreach {1/0}


执行结果为:

复制代码 代码如下:

Thursday, June 26, 2014 4:41:41 PM
524288
在第9行,第15列捕获到异常:Attempted to divide by zero.

 

延伸 · 阅读

精彩推荐