Why Deleted Site Cannot Be Restored From Admin Center
🔍 WiseChecker

Why Deleted Site Cannot Be Restored From Admin Center

You deleted a SharePoint site and now need it back. When you open the SharePoint admin center, the site does not appear in the list of deleted sites. The restore option is grayed out or missing entirely. This article explains why a deleted site cannot be restored from the admin center and what you can do instead.

The root cause is that SharePoint uses a two-stage deletion process. Sites go to the Recycle Bin first, then to the Second-Stage Recycle Bin, and finally to permanent deletion. But some site types, such as those connected to Microsoft 365 Groups, follow different retention rules.

You will learn the exact reasons a site may not be restorable. You will also get step-by-step instructions for recovering sites using PowerShell and the Microsoft 365 admin center. Finally, you will see related failure patterns and how to avoid them.

Key Takeaways: Why a Deleted SharePoint Site Cannot Be Restored

  • SharePoint admin center > Deleted sites: Shows only sites deleted within 93 days that are not connected to a Microsoft 365 Group
  • Microsoft 365 admin center > Deleted groups: Restores group-connected sites within 30 days of group deletion
  • SharePoint Online Management Shell: Recovers sites that are in the Second-Stage Recycle Bin but hidden from the admin center

ADVERTISEMENT

Why the SharePoint Admin Center Cannot Restore Some Deleted Sites

SharePoint Online uses a multi-step deletion process. When you delete a site, it first moves to the SharePoint Recycle Bin. From there, it goes to the Second-Stage Recycle Bin. After 93 days total, the site is permanently deleted. The SharePoint admin center only shows sites in the Recycle Bin that are not tied to a Microsoft 365 Group.

The problem occurs when a site is connected to a Microsoft 365 Group. Deleting the site does not delete the group. Conversely, deleting the group deletes the site. The SharePoint admin center does not manage group-connected sites. You must use the Microsoft 365 admin center or PowerShell to restore them.

Another reason is that the site was permanently deleted. After 93 days, no restore method works. Also, if the site was a classic team site not connected to a group, it might have been deleted from the Second-Stage Recycle Bin by a site collection administrator. In that case, the admin center shows nothing.

SharePoint Site Deletion Timeline

The deletion timeline has three stages:

  • Stage 1: SharePoint Recycle Bin — The site stays here for 93 days after deletion. The site owner or admin can restore it from the SharePoint admin center.
  • Stage 2: Second-Stage Recycle Bin — After the first 93 days, the site moves here. Only site collection admins or global admins can restore it using PowerShell.
  • Stage 3: Permanent deletion — After the total retention period ends, the site is gone. No restore is possible.

Group-Connected Sites and the Microsoft 365 Admin Center

When you create a modern team site, SharePoint creates a Microsoft 365 Group. The site and the group are linked. If you delete the group, the site is deleted within 24 hours. The SharePoint admin center cannot restore it because the group no longer exists. You must restore the group first in the Microsoft 365 admin center. The group restore window is 30 days.

Steps to Restore a Deleted Site That Does Not Appear in the Admin Center

Follow these steps in order. Stop when the site is restored.

  1. Check the SharePoint admin center Deleted sites page
    Go to the SharePoint admin center. Select Deleted sites from the left menu. If the site appears, select it and choose Restore. If it does not appear, proceed to the next step.
  2. Check the Microsoft 365 admin center Deleted groups page
    Go to the Microsoft 365 admin center. Select Teams and groups then Deleted groups. Look for the group that matches your site name. If the group appears, select it and choose Restore group. The site will be restored automatically within 24 hours.
  3. Use SharePoint Online Management Shell to check the Second-Stage Recycle Bin
    Install the SharePoint Online Management Shell if you have not already. Connect to SharePoint Online using Connect-SPOService -Url https://[tenant]-admin.sharepoint.com. Run Get-SPODeletedSite -IncludeOnlyPersonalSite $false | Where-Object {$_.Status -eq “Recycled”}. If the site appears, run Restore-SPODeletedSite -Identity https://[tenant].sharepoint.com/sites/[sitename].
  4. Use SharePoint Online Management Shell to restore a group-connected site
    If the site is group-connected and the group was not restored in step 2, run Get-SPODeletedSite -IncludeOnlyPersonalSite $false | Where-Object {$_.GroupId -ne $null}. Note the GroupId. Then run Restore-SPODeletedSite -Identity https://[tenant].sharepoint.com/sites/[sitename]. This restores the site but not the group. The site will be orphaned. To restore the group, use the Microsoft 365 admin center or Azure AD PowerShell.
  5. Contact Microsoft Support
    If none of the above steps work, open a support ticket with Microsoft. Provide the site URL and the date it was deleted. Support can often restore sites within 93 days that are hidden from the admin center.

ADVERTISEMENT

Related Failure Patterns and Their Fixes

Deleted Site Shows in Admin Center but Restore Button Is Grayed Out

This happens when the site is in the Second-Stage Recycle Bin. The SharePoint admin center cannot restore sites from that stage. Use the SharePoint Online Management Shell to restore the site as described in step 3 above.

Group-Connected Site Deleted, Group Still Exists

If you delete the site but the group remains, the site goes to the SharePoint Recycle Bin. You can restore it from the SharePoint admin center. If the admin center does not show it, use the PowerShell command Get-SPODeletedSite and then Restore-SPODeletedSite. The site will reconnect to the group automatically.

Site Deleted More Than 93 Days Ago

After 93 days, the site is permanently deleted. No restore method works. If you have a backup from a third-party tool, you can restore the content to a new site. Otherwise, the data is gone. To prevent this, configure retention policies in the Microsoft 365 compliance center.

SharePoint Admin Center vs Microsoft 365 Admin Center vs PowerShell for Site Restore

Item SharePoint Admin Center Microsoft 365 Admin Center PowerShell
Restore site from Recycle Bin Yes, for non-group sites No Yes
Restore site from Second-Stage Recycle Bin No No Yes
Restore group-connected site No Yes, within 30 days of group deletion Yes, but group may not be restored
Retention period 93 days from deletion 30 days from group deletion 93 days from deletion
Requires admin permissions SharePoint admin Global admin SharePoint admin

After the 93-day window, no method can restore the site. Use retention labels or third-party backup to preserve critical data. If you manage many sites, schedule a weekly PowerShell script to list all deleted sites and their remaining retention days. This gives you time to act before permanent deletion.

ADVERTISEMENT