SharePoint – Unable to create any site collection- Error Message -DocumentSet FeatureActivating: throws exception: This page has encountered a critical error. Contact your system administrator if this problem persists”

In one of our SharePoint Farms, we face this error message when we try to create a site collection”DocumentSet FeatureActivating: throws exception: This page has encountered a critical error. Contact your system administrator if this problem persists..”

You need to run the following powershell commands

Add-pssnapin microsoft.sharepoint.powershell
$contentservice = [Microsoft.sharepoint.Administration.spwebservice]::contentservice
$webapp = $contentservice.webapplications | where { $_.name -match “WEB_APP_NAME” }
$webapp.provision()

Happy SharePointing Folks 🙂

Leave a Reply

Your email address will not be published. Required fields are marked *