Frage

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

War es hilfreich?

Lösung

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.

Lizenziert unter: CC-BY-SA mit Zuschreibung
Nicht verbunden mit sharepoint.stackexchange
scroll top