Posts

Showing posts from August 31, 2014

Deny User or group access to the Web Application

Perfect Solution http://sharepointtechie.blogspot.com/2010/10/deny-users-access-on-entire-portal-web.html 

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()