Search This Blog

Sunday, May 15, 2016

"Delete this Document library" link missing in SharePoint 2013

Problem

"Delete this document library" link is missing






Solution

Add-PSSnapin Microsoft.Sharepoint.Powershell

$web = Get-SPWeb('URL of Site')

$list = $web.Lists['Name of Document Library']

$list.AllowDeletion = $true

$list.Update()