Disabling the threshold for SharePoint List and Document Library
$web = Get-SPWeb -Identity http://site
$web.AllowUnsafeUpdates = $true
$list = $web.Lists["ListName"]
$list.EnableThrottling = $false
$list.Update()
$web.AllowUnsafeUpdates = $false
$list.EnableThrottling
$web.Update()
$web.Dispose()
Comments
Post a Comment