Disable Resource Throttling on a List-by-List Basis (PowerShell method)

 

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()