Removing a Deleted site in SharePoint
Deleting a Site in SharePoint does not fully delete it. Here I will explain how to fully delete a site.
- Log into the Sharepoint admin site and delete the site from the Active Sites list.
- Open Powershell.
- Install the Microsoft.Online.SharePoint.PowerShell module using
Install-Module Microsoft.Online.SharePoint.PowerShell
- Connect to the top level site using
Connect-SPOService -Url <topLevelSite> -Credential GlobalAdmin@Contoso.com
- Remove the deleted site using the command
Remove-SPODeletedSite -Identity <URL of the SharePoint site>
#SharePoint #Deleted Site #Remove Sharepoint Deleted Site