Sharepoint’de bazen güncellemelerden dolayı bazı servislerde veya web partlarda sorunlar oluşabiliyor. Bu sorunlardan biriside “Web Part Error”.
Bu hatanın tam detaylı içeriği şu şekildedir; Web Part Error: This page has encountered a critical error. Contact your system administrator if this problem persists
Bu hatayı aşağıda sizinle paylaşacağım PowerShell komutu ile çözebilirsiniz.
Add-pssnapin microsoft.sharepoint.powershell
$contentservice = [Microsoft.sharepoint.Administration.spwebservice]::contentservice
$webapp = $contentservice.webapplications | where { $_.name -match "WEB_APP_NAME" }
$webapp.provision()