Quantcast
Channel: SharePoint Diary
Viewing all articles
Browse latest Browse all 1058

How to Delete Site Collection using PowerShell in SharePoint

$
0
0
To delete any SharePoint site collection, You have use SharePoint Central Administration site. Navigate to :
  • SharePoint 2013 Central Administration >> Application Management 
  • Click on Delete a site collection link under Site Collections group
    how to delete site collection powershell
  • Select the site collection to delete
    delete site collection powershell sharepoint 2013
  • Click on Delete button to delete a site collection in SharePoint.
    powershell script to delete a site collection
Delete host named site collection with PowerShell
Hostnamed site collections can be managed only through PowerShell! Central Admin doesn't offer the provision to delete Host named site collections as it offers for Path-based sites. Following are some examples of deleting SharePoint 2013/2010 site collections using PowerShell.

Delete site collection using PowerShell
To delete site collection through PowerShell, use Remove-SPSite cmdlet.
Remove-SPSite -Identity "<Site-Collection-URL>" 
E.g.
Remove-SPSite -Identity "http://sharepoint.crescent.com/sites/operations" 
Force delete SharePoint site collection PowerShell
If you face any difficulty in deleting SharePoint site collection either from Central Admin or with PowerShell, you can force delete as:
#Get the site collection to delete
$Site = Get-SPSite http://site-collection-url

#Get the content database of the site collection
$SiteContentDB = $site.ContentDatabase

#Force delete site collection
$SiteContentDB.ForceDeleteSite($Site.Id, $false, $false)

Bulk delete site collections with PowerShell in SharePoint 2013 
How about bulk deleting multiple site collections? Say, You want to delete all site collections under the given managed path: /Sites?
Get-SPSite "http://sharepoint.crescent.com/sites*" -Limit ALL | Remove-SPSite -Confirm:$false
PowerShell to delete all site collections under a web application:
If you don't want to send your SharePoint sites to recycle bin and would like to remove them permanently, use:
#Web Application URL
$WebAppURL="http://SharePoint.crescent.com"

#Get Each site collection and delete
Get-SPWebApplication $WebAppURL | Get-SPSite -Limit ALL | Remove-SPSite -Confirm:$false

Related posts:

Viewing all articles
Browse latest Browse all 1058

Trending Articles



<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>