Share via


Restore SharePoint Deleted Site Using PowerShell

This happens many times with the SharePoint administrators that someone deletes the site unfortunately and they want it back. What happens if it is also deleted from the recycle bin?

We can still restore the deleted site by using PowerShell commands.

Initially, get all the sites that were deleted. This provides the sites deleted list with the Site ID:

Get-SPDeletedSite | Select Path , ID

Once you get the details, restore the site with the below command:

Restore-SPDeletedsite â€“identity <SiteID>