我正在运行Powershell 4,并尝试通过在调用中使用-ErrorVariable参数获取错误变量以在函数中进行填充,并尝试在函数本身内写入错误。但是,该变量永远不会填充。

这是我的脚本:

$SqlCmd = "C:\Program Files\Microsoft SQL Server\110\Tools\Binn\SQLCMD.EXE"

myfunc -ErrorVariable myfuncerr

if ($myfuncerr -and $myfuncerr.Count -ne 0) {
    $worked = 1
} else {
    $worked = 0
}

function myfunc
{
    $output = & $SqlCmd -S localhost -d integration -q 'alter table tablethatdoesntexist add xt int' -b | out-string

    if ($LASTEXITCODE = 1)
    {
        write-error $output
    }
}

因为它是-ErrorVariable,所以我期望写错误用$ output的内容填充变量$ myfuncerr,但这不会发生($ myfuncerr保持空白)。我正在Powershell ISE中进行调试,因此可以看到实际上已调用Write-Error。

我也尝试过使用throw($ output)引发异常,并使用-ErrorAction SilentlyContinue运行myfunc,但仍未填充$ myfuncerr,即
$SqlCmd = "C:\Program Files\Microsoft SQL Server\110\Tools\Binn\SQLCMD.EXE"

myfunc -ErrorVariable myfuncerr -ErrorAction SilentlyContinue

if ($myfuncerr -and $myfuncerr.Count -ne 0) {
    $worked = 1
} else {
    $worked = 0
}

function myfunc
{
    $output = & $SqlCmd -S localhost -d integration -q 'alter table tablethatdoesntexist add xt int' -b | out-string

    if ($LASTEXITCODE = 1)
    {
        throw $output
    }
}

我是否正确使用-ErrorVariable参数?

最佳答案

您需要通过提供具有param()属性的[CmdletBinding()]块来表明您的函数是advanced function:

function myfunc
{
    [CmdletBinding()]
    param()

    $output = & $SqlCmd -S localhost -d integration -q 'alter table tablethatdoesntexist add xt int' -b | out-string

    if ($LASTEXITCODE -eq 1)
    {
        throw $output
    }
}

这会自动将common parameters添加到您的函数中,包括ErrorVariable参数

10-08 13:56