Sharepoint : Get Error Details from Correlation ID via Powershell
Get the detail of Sharepoint error from Correlation ID by using these command.

For this example,
Correlation ID is e152dac6-a8d4-49ae-a192-2798a8ced58b
Basic command to get error details
get-splogevent | ?{$_Correlation -eq ""}

State the columns desired. ie : Area, Category, Level, EventID, Message
get-splogevent | ?{$_.Correlation -eq "" | select Area, Category, Level, EventID, Message | Format-List}

Save the refined log in C: as errordetail.log
get-splogevent | ?{$_.Correlation -eq ""} | select Area, Category, Level, EventID, Message | Format-List > C:errordetail.log

Recent Comments