Easiest way to read ULS log error with Correlation ID
Simply run this in Powershell and replace the GUID with the one presented
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$guid = "d17a4766-5115-4be4-8138-9962885912bc" | |
Get-SPLogevent –starttime (get-date).addminutes(-65) | ?{$_.Correlation -eq $guid} | select Message | Format-table –property message–autosize |