viernes, 14 de octubre de 2016

Buscar errores en el Log de SharePoint 2010\2013\2016

Buenas tardes,
A continuación les dejo unos comandos útiles para buscar errores en SharePoint filtrando por Correation ID.

Desde SharePoint PowerShell
get-splogevent | ?{$_.Correlation -eq "GUID" }

Desde Windows PowerShell
Get-ChildItem L:\LOGS\*.log -Recurse | Select-String -Pattern "ERROR o CORRELATION ID" > L:\SharePointErrorULSLog.txt
Desde SQL Server

select [RowCreatedTime],[ProcessName],[Area],[Category],EventID,[Message] from [WSS_Logging].[dbo].[ULSTraceLog] where CorrelationId='B4BBAC41-27C7-4B3A-AE33-4192B6C1E2C5'

No hay comentarios:

Publicar un comentario