Saturday, January 2, 2016

SharePoint 2013 Disable List Throttling using PowerShell

If your list items increased beyond the threshold limit, then we can disable the list throttling using PowerShell.

You can also check: SharePoint 2013 In place Record Management

Below is the PowerShell command to disable list throttling using PowerShell.

Add-PSSnapin Microsoft.SharePoint.PowerShell

$web = Get-SPWeb http://OnlySharePoint2013:2334/

$list = $web.Lists["ListName"]

$list.EnableThrottling = $false

$list.Update()

I hope this will be helpful.


Twitter Delicious Facebook Digg Favorites More