Deny User or group access to the Web Application Get link Facebook X Pinterest Email Other Apps September 05, 2014 Perfect Solution http://sharepointtechie.blogspot.com/2010/10/deny-users-access-on-entire-portal-web.html Read more
Disabling the threshold for SharePoint List and Document Library Get link Facebook X Pinterest Email Other Apps September 02, 2014 $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() Read more