Home › Forums › QuickApps Forum › Throttling limit using Http parameter › RE: Throttling limit using Http parameter

Anonymous
Hi ,
n
Could you please give me the error message?
n
BTW. If you don't care about the performance, you can simply disable the throttling of the relevant SP list to avoid the error. In the following powershell script, replace the values of $siteURL and $listName with your actual site url and list name. Save the script to a *.ps1 file. Then run it on your SharePoint Server.
n
Add-PSSnapin Microsoft.SharePoint.PowerShell
n
$siteURL = "http://siteUrl";
$listName = "listName";
n
$spWeb = Get-SPWeb -Identity $siteURL;
$list = $spWeb.Lists[$listName];
Write-Host $list.EnableThrottling;
n
#Disable the throttling
$list.EnableThrottling = $false;
n
If you want to enable the throttling again, you just need to change the $false to $true.
n
Thanks,
n