Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Here is the PowerShell method to disable Resource Throttling on a list by list basis:
$webapp = Get-SPWebApplication -Identity "SharePoint Site"
$siteawwu = Get-SPSite https://contoso/sites/abc
$web = Get-SPWeb https://contoso/sites/abc
$largelist = $web.Lists["Large List Test"]
$largelist.EnableThrottling=$false
$largelist.Update()