Searching inside SharePoint recycle bin for a deleted item or file, is a pain especially when you have LOT of deleted items and files in SharePoint recycle bin. Unfortunately SharePoint doesn't provide Search capability in recycle bin and you have to press Next>> <<Prev buttons to search for your file.
We can perform Search on SharePoint Recycle bin items with SPRecycleBinQuery. Here is an example of SPRecycleBinQuery with PowerShell.
Good news is: If you know your file name, can search inside recycle in programmatically with PowerShell!
We can perform Search on SharePoint Recycle bin items with SPRecycleBinQuery. Here is an example of SPRecycleBinQuery with PowerShell.
Good news is: If you know your file name, can search inside recycle in programmatically with PowerShell!
[void][System.Reflection.Assembly]::LoadWithPartialName("Microsoft.SharePoint") #Get the Site collection $site = new-object Microsoft.SharePoint.SPSite("http://sharepoint.company.com") #Create new object for SPRecycleBinQuery $query = new-object Microsoft.SharePoint.SPRecycleBinQuery #$query.ItemState = "FirstStageRecycleBin" $query.ItemState = "SecondStageRecycleBin" #How many Rows to be returned $query.RowLimit = 100 #Call GetRecycleBinItems to Search Inside SharePoint Recycle Bin $DeletedItemsColl = $site.GetRecycleBinItems($query) #Filter Result $Result= $DeletedItemsColl | where {$_.Title -match ".txt"} #Write output $Result | foreach-object { (Write-Host "Found Item:" $_.Title) (write-host "Created by:" $_.AuthorName) (write-host "Deleted by:" $_.DeletedByName) (write-host "Deleted Date:"$_.DeletedDate) (write-host "File Size(Bytes):" $_.Size) (write-host "Original Location:" $_.DirName) (write-host "Web:" $_.web.URL) (Write-Host "------------------------------------") }We can search recycle bin items based on File Name, Deleted By, Deleted Time, Size, etc. Its also possible to either restore or permanently delete the files by calling approximate method.This is extremely useful if you want to search recycle bin programmatically!