I'm trying to search a specific file from a sharepoint recycle bin but I'm unable to find it. Can anyone please help me in that

有帮助吗?

解决方案

You can use PnP PowerShell to get the report for Recycle Bin.

Here is a sample script for your reference:

#Get the PnP PowerShell module
##Skip this line if you already have it
Install-Module SharePointPnPPowerShellOnline

#Config Variables
$SiteURL = "<SiteURL>"
$Username = "<GlobalAdminAccount>"
$Password = "<Password>"
$FilePath = "C:\Temp\RecycleBin.csv"

#Connect to PnP Online
$cred = New-Object -TypeName System.Management.Automation.PSCredential -argumentlist $UserName, $(convertto-securestring $Password -asplaintext -force)
Connect-PnPOnline -Url $SiteURL -Credential $cred

#Get Recycle bin Items
Get-PnPRecycleBinItem | Select Title, ItemType, Size, ItemState, DirName, DeletedByName, DeletedDate | Export-Csv $FilePath -NoTypeInformation

References: SharePoint Online: Search Recycle Bin using PowerShell. / PnP PowerShell overview.

许可以下: CC-BY-SA归因
scroll top