Get list of sites from SharePoint content database Get link Facebook X Pinterest Email Other Apps August 01, 2014 This command will get the list of sites from the content Database. $db = Get-SPContentdatabase "sql_test_db_name" $db.sites Read more
Delete Document Library using SharePoint Power Shell Script Get link Facebook X Pinterest Email Other Apps August 01, 2014 $SiteUrl = "http://SP:2010/sites/TestSite" $web = Get-SPWeb $SiteUrl $library = $web.lists["Shared Documents"] $library.AllowDeletion = $True $library.update() $library.Delete() Read more