If you
want to overwrite or disable the threshold limit of List View items for
particular list then execute the following cmdlets in Powershell.
$WebApplication = Get-SPWeb http://<SiteCollectionName>
$List = $WebApplication.Lists["List Name"]
$List.EnableThrottling = $false
$List.Update()
There is
one property of SPList called "Enable Throttling" which has to be set
to false to overwrite the threshold limit set on Web Application for all the
lists.
I hope
this is helpful and If you have any questions then please let me know, Thank
you.
Applies
to SharePoint Server 2010.
No comments:
Post a Comment
Your feedback is always appreciated. I will try to reply to your queries as soon as possible- Amol Ghuge
Note: Only a member of this blog may post a comment.