如何在sharepoint里通过correlation id查找详细的错误信息
时间:2014-01-27 17:26:32
收藏:0
阅读:348
Sharepoint里我们经常遇到这样的错误信息:
我们能通过下面的power shell 命令来查到详细的错误信息:
get-splogevent -StartTime "01/25/2014 17:00" | where-object {$_.Correlation -eq "ab0f6e9c-1502-207f-80c9-7e869feaceb9" -and $_.Level -ne "Medium"} | select Area, Category, Level, EventID, Message | Format-List
命令详细介绍: http://technet.microsoft.com/en-us/library/ff607589.aspx
原文:http://www.cnblogs.com/fengwenit/p/3534759.html
评论(0)