Here is small script, that displays SharePoint logs by correlation ID in last 5 miutes. The parameter out-gridview displays logs in a new window.
get-splogevent -starttime (get-date).addminutes(-5) | ?{$_.Correlation -eq 'your correlation ID'} | out-gridview
Leave a Reply