Friday, 17 August 2012

Delete SharePoint List using PowerShell

Delete SharePoint List using PowerShell.
 
$SPWeb = Get-SPWeb http://virtual:8001/
$List = $SPWeb.Lists["Test"]
$List.Delete()   
$SPWeb.Dispose()

No comments:

Post a Comment