我正在通过我的代码中的管道执行exchange powershell命令。
问题是当在powershell上直接执行命令时,返回的错误是四行长,但是当我通过管道运行命令时,它只返回错误消息的第一行。
这是我到目前为止的代码:
bool ps_calls::check_invoke(Pipeline^ pipeline)
{
if (pipeline->Error->Count <= 0)
return true;
Collection<System::Object^> errorCollection = pipeline->Error->ReadToEnd();
for (int i=0; i< errorCollection.Count; i++)
{
String^ msg = String::Format("Error {0}",errorCollection[i]->ToString());
m_errors->Add(msg);
m_logger->info_msg(String::Format("ERROR: {0}", msg));
}
return false;
}
这是我的管道现在返回的示例:
ERROR: Error The operation couldn't be performed because object 'Testing' couldn't be found on 'server'.
如果在powershell控制台上手动执行相同的命令,则会显示错误消息的示例:
The operation couldn't be performed because object 'test' couldn't be found on 'server'.
+ CategoryInfo : NotSpecified: (:) [Get-MailboxDatabase], ManagementObjectNotFoundException
+ FullyQualifiedErrorId : 2F753561,Microsoft.Exchange.Management.SystemConfigurationTasks.GetMailboxDatabase
+ PSComputerName : server
我希望能够得到此错误消息的其余部分,以便在发生错误时可以看到ErrorID。
答案 0 :(得分:1)
PowerShell在格式化时不会调用ToString,这就是为什么你没有看到相同的输出。
某些主机应用程序通常会将输出管道输出为Out-Default - 如果您这样做,则会看到预期的错误格式。
其他主机应用程序将输出管道输出到Out-String - 这将以与管道输出为Out-Default时格式化对象相同的方式格式化对象,但是您将获得一个可以记录的字符串对象,但是您需要。