错误消息不完整

时间:2014-01-07 10:19:39

标签: powershell error-handling

我试图从PowerShell脚本中获取错误信息。但是消息不完整它总是只发回一部分massege。 这是代码:

 try
    {
        Invoke-Command -ComputerName $StandbyServer {powershell.exe -noprofile -executionpolicy Bypass -file ("E:\Backup\SomeScript.ps1")} -ErrorAction Stop
    }

    catch [Exception]
    {
        .$SendEmail $_.Exception
        Write-Host $_.Exception
    }

结果如下:

  

System.Management.Automation.RemoteException:Ausnahme beim Aufrufen   von“ExecuteScalar”mit 0 Argument(en):“ALTER DATABASE

有谁知道问题出在哪里?

0 个答案:

没有答案