欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

Powershell实现捕获系统内置EXE程序的异常

程序员文章站 2022-07-05 10:29:26
支持所有版本。 当你运行控制台exe命令,如robocopy.exe, ipconfig.exe或类似命令。你可以用powershell获得他们引起的错误: 复制代码...

支持所有版本。

当你运行控制台exe命令,如robocopy.exe, ipconfig.exe或类似命令。你可以用powershell获得他们引起的错误:

复制代码 代码如下:

try
{
    $current = $erroractionpreference
    $erroractionpreference = 'stop'
    # this will cause an exe command to emit an error
    # (replace with any console-based exe command)
    net.exe user nonexistentuser 2>&1
    $erroractionpreference = $current
}
catch
{
   write-host ('error occured: ' + $_.exception.message)
}

要捕获错误你需要设置$erroractionpreference 为$stop,与此同时,你需要更改错误的输出方式添加“2>&1”
这样设置后,你就可以通过powershell捕获.net中的错误了。