문제

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 ~와 함께 속성
제휴하지 않습니다 sharepoint.stackexchange
scroll top