Quantcast
Channel: SharePoint Diary
Viewing all articles
Browse latest Browse all 1058

Disable Throttling on SharePoint List using PowerShell

$
0
0
Throttling feature helps to avoid performance hits in SharePoint. We set throttling limits for entire web application. Its not possible to set throttling limits on specific SharePoint list or library. But we can disable/enable throttling on SharePoint lists.

PowerShell to disable list throttling:
Use the below script to disable list throttling in SharePoint 2010 using PowerShell
Add-PSSnapin Microsoft.SharePoint.PowerShell -ErrorAction SilentlyContinue

#Variables for Site URL and List Name
$WebURL = "http://sales.crescent.com"
$ListName = "Proposal Documents"

#Get the Site and List objects
$web = Get-SPWeb $WebURL
$List = $Web.Lists[$ListName]

#Disable throttling on the list
$list.EnableThrottling = $false
$List.Update()

Related post: Configure Resource Throttling in SharePoint 2013 using PowerShell

Viewing all articles
Browse latest Browse all 1058

Trending Articles



<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>