Search
Xopher Design
Xopher Design > Posts
  
Delete "This list cannot be deleted." lists with Powershell
Some lists tell you "no" or "This list cannot be deleted." when you try to delete them. Sometimes it's just the allowdeletion flag.
$lname = "list name here"
$wname = "http://yoursite.whatever"
$web = Get-SPWeb $wname
$l = $web.Lists | where {$_.Title -eq $lname}
$l.AllowDeletion = $true
$l.Update()
$web.Lists.Delete($l.ID)

goodbye pesky list
​Responses
  
There are no items to show in this view of the "Responses" list. To add a new item, click "New".