您的位置:首页 > 其它

如何在sharepoint里通过correlation id查找详细的错误信息

2014-01-27 17:56 316 查看
Sharepoint里我们经常遇到这样的错误信息:





我们能通过下面的power shell 命令来查到详细的错误信息:

cls
$correlationid = read-host
$date = (Get-Date).AddHours(-1)
get-splogevent -StartTime $date | where-object {$_.Correlation -eq $correlationid.Trim() -and $_.Level -eq "Unexpected" } | select Area, Category, Level, EventID, Message | Format-List





命令详细介绍: http://technet.microsoft.com/en-us/library/ff607589.aspx
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: