We can Delete corrupted list from SharePoint site using Management Shell by writing below script.
- $web = get-spweb -Identity http://sps2010
- $list = $web.lists["corrupted list name"]
- $list.AllowDeletion = $true
- $list.Update()
- $list.Delete()
We can Delete corrupted list from SharePoint site using Management Shell by writing below script.
Join the conversation! Your thoughts help the community grow.