In my Previous Project one of my customers wanted me to increase Default Value for the List View Threshold to 8000, but for specific List but not for entire SharePoint Web Application.
Increasing the List View threshold value for Web application is fine. But for specific list .
We can achieve this task using SharePoint Power Shell.
$WebApplication = Get-SPWeb http://abc:12345
$List = $WebApplication.Lists["Employee"]
$List.EnableThrottling = $false
$List.Update()
In SharePoint List Properties, we have property Called “EnableThrottling”.
By setting it to false, it allows to Bypass default Value for the List View Threshold value.
No comments:
Post a Comment