Tuesday, February 11, 2014

How to Disable throttling for specific List in SharePoint

If you need to disable SharePoint list view throttling for a specific list, you can do that using PowerShell with this simple script.

$web = Get-SPWeb “https://fqdn.of.my.website”
$list = $web.Lists["ListName"]

$list.EnableThrottling = $false
$list.Update()


Remember to read "Manage list and library with many items" to understand the best way to manage this kind of lists.

No comments: