Your input shapes our product. Suggest a feature now →
  1. Home
  2. Compare
  3. Second-Stage Recycle Bin Access Methods

SharePoint Second-Stage Recycle Bin Access Methods Compared

Only site collection administrators can see the SharePoint second-stage recycle bin from inside a site. Site owners cannot. End users cannot. For a recovery to succeed after the first-stage bin has been cleared, the right person with the right tool must act within the 93-day combined retention window. This page compares every available access method so you can choose the one that fits your role and your situation.

What is the SharePoint second-stage recycle bin?

When a file or list item is deleted in SharePoint Online, it moves to the first-stage recycle bin, where it stays for up to 30 days or until a user empties it. From there, it drops to the second-stage recycle bin (sometimes called the site collection recycle bin). Items remain in the second stage for the remainder of a 93-day combined window, counted from the original deletion date.

The second stage is the last line of defence before permanent, unrecoverable purge - items there are invisible to contributors and site owners alike. The restriction is deliberate: the second stage is an administrator-only recovery path, not a self-service one.

SharePoint Online only: This page covers SharePoint Online. On-premises SharePoint has a similar two-stage structure but with configurable (and typically shorter) retention windows - check your farm's recycle bin settings rather than assuming the 93-day window applies. Recycle Master supports SharePoint Online only.

The 93-day retention window starts when the item is first deleted, not when it enters the second stage. A file deleted on day 1 and cleared from the first stage on day 25 has roughly 68 days left in the second stage before permanent purge.

Who can access the second-stage recycle bin by default?

Role First-stage bin Second-stage bin Notes
Contributor / Member Items they deleted only No access End users cannot see items others deleted from the first stage either.
Site Owner All first-stage items No access Site owners manage the first stage but cannot reach the second.
Site Collection Administrator All first-stage items Full access Can view, restore, and permanently delete items in both stages from inside the site.
SharePoint Administrator (tenant level) All items, all sites Full access, all sites Can add themselves as site collection admin on any site to gain access.
Global Administrator All items, all sites Full access, all sites Same path as SharePoint administrator.

The practical consequence: a site owner who discovers a missing file cannot recover it from the second stage themselves. They must escalate to a site collection administrator or SharePoint administrator, which in most organisations means an IT helpdesk ticket and a wait.

Method 1: Native SharePoint site UI

If you are a site collection administrator for the affected site, this is the fastest path for a single-item recovery where you know roughly what you are looking for.

  1. Navigate to the SharePoint site.
  2. Click the gear icon and then Site contents.
  3. Click Recycle bin in the left navigation.
  4. Scroll to the bottom of the first-stage list and click Second-stage recycle bin.
  5. Locate the item, select it, and click Restore.

The native UI displays items in a flat list sorted by deletion date, newest first. There is no keyword search box and no filter by file type or original folder. For a bin containing thousands of items, locating a specific file means scrolling through every page, which becomes impractical quickly. The interface also handles only the current site: if you need to check five different sites, you navigate to five different recycle bin pages separately.

Method 2: SharePoint admin center

A SharePoint administrator can reach any site's second-stage bin through the admin center without first being added as a site collection administrator. The route is indirect but does not require modifying the site's permissions.

  1. Open the Microsoft 365 admin center and navigate to SharePoint admin center.
  2. Under Sites, click Active sites and locate the affected site.
  3. Click the site name to open its properties panel, then click Visit site.
  4. Follow the native UI steps above: Recycle bin, then Second-stage recycle bin.

The admin center path adds three navigation steps compared to going directly to the site, but it avoids the need to be added as a site collection admin on each site you need to access. The recycle bin interface once reached is identical to the native site UI, with the same absence of search capability.

Neither the native UI nor the admin center route supports bulk restore across multiple sites in a single operation. Each site requires a separate visit.

Method 3: PnP PowerShell

PnP PowerShell exposes the second-stage recycle bin via Get-PnPRecycleBinItem with the -SecondStage flag. This gives programmatic access and filtering that the UI cannot provide.

Connect-PnPOnline -Url "https://contoso.sharepoint.com/sites/ProjectAlpha" -Interactive
Get-PnPRecycleBinItem -SecondStage | Where-Object { $_.LeafName -like "*.docx" }

# Restore a specific item by ID
Restore-PnPRecycleBinItem -Identity "item-guid-here" -Force

PowerShell is the right tool when you need a repeatable, scriptable operation, such as restoring all files deleted by a specific user within a date range, or building a report of second-stage contents before a storage audit. A SharePoint administrator or site collection administrator account is required to connect.

The main limitation: PnP PowerShell operates one site at a time. Cross-site second-stage operations require a loop over site URLs, which works but adds authoring overhead. You also need to handle throttling correctly on larger tenants, where Microsoft imposes request limits that can interrupt unthrottled loops. See the SharePoint throttling limits reference for the relevant thresholds.

Method 4: ShareMaster Recycle Master

Recycle Master indexes both stages of the recycle bin and makes the contents searchable without scripting. A SharePoint administrator connects ShareMaster to the tenant once; after that, any site's bin contents are accessible through a search interface that works across sites.

Capabilities specific to second-stage access:

  • Keyword search across the entire bin. Find a file by name or partial name without scrolling. The search covers both stages simultaneously, so you do not need to know which stage the file is in before searching.
  • Filter by deleted-by user and date range. When a user accidentally mass-deletes a folder or when you need to reverse the deletions from a specific date, filtering by user and date range returns only the relevant items.
  • Bulk restore across both stages. Select all matching items across multiple pages and restore in a single operation, whether the items are in the first stage, the second stage, or both.
  • Cross-site view. Connect to multiple sites and see their combined second-stage contents in one place, without opening each site separately.
  • Tenant-wide bulk clear. Before a storage audit or a tenant migration, clearing the second stage across dozens or hundreds of sites is a common requirement. Recycle Master handles this without per-site navigation.

Which method fits your situation?

Scenario Best method Reason
Recovering one known file from a site you administer Native SharePoint UI Fastest for a single-item recovery where the item is visible in the sorted list.
You are a SharePoint admin accessing a site you do not normally manage Admin center route Avoids modifying site permissions; navigates directly to the bin through the admin panel.
Restoring all files a specific user deleted this week Recycle Master Filter by deleted-by user and date range, then bulk restore all matches.
Searching for a file by name when you do not know when it was deleted Recycle Master Native UI has no keyword search. Recycle Master finds the file by name fragment across both stages.
Scripted or automated cleanup integrated with an existing runbook PnP PowerShell Scriptable and can be integrated into scheduled tasks or pipelines.
Clearing the second stage across 50+ sites before a migration Recycle Master Tenant-wide bulk clear in a single operation; per-site navigation would take hours.
You are a site owner and need a file recovered Escalate to IT No self-service path exists for non-admins. A site collection admin must perform the recovery.

For most recovery requests that arrive at the helpdesk, the native UI or admin center route covers single-item work adequately. PnP PowerShell suits environments with scripting capability and recurring automated needs. Recycle Master closes the capability gap for search-based recovery, bulk operations, and cross-site administration where neither the UI nor one-off scripting scales well.

Frequently Asked Questions

Can site owners access the SharePoint second-stage recycle bin?

No. Site owners cannot access the second stage. Only site collection administrators and above can view and restore items from it.

How long do items stay in the second-stage recycle bin?

Items are retained for 93 days from the original deletion date across both stages combined. An item that spent 30 days in the first stage has roughly 63 days remaining in the second stage before permanent purge.

How do I access the second stage without site collection admin rights?

You cannot. The second stage is restricted to site collection administrators and above. If you need a file recovered, raise a ticket to your SharePoint administrator, who can access the bin through the admin center without modifying the site's member permissions.

Can I search the second-stage recycle bin by filename?

The native SharePoint UI does not offer keyword search within the recycle bin. You can sort the flat list by filename, but there is no search box. ShareMaster's Recycle Master provides full-text search by filename, original path, deleted-by user, and date range.

For the step-by-step recovery process including what to do once the 93-day window has expired, see How to Recover Deleted SharePoint Files.

Try ShareMaster free for 14 days