If you ever need to disable SharePoint throttling on a specific list instead of the whole web-application.
1 2 3 4 5 6 7 8 9 10 11 12 13 |
#URL to the web application site collection. $URL = "https://sharepoint.contoso.com"; #The list that needs to be configured. $List = "Tasks"; #Gets the web application site collection. $WebApplication = Get-SPWeb "$URL"; #Gets the list. $Content = $WebApplication.Lists["$List"]; #Disable throttling. $Content.EnableThrottling = $false; #Update the list. $Content.Update(); |