How to view items details on SharePoint Recycle bin
Problem
Microsoft SharePoint Online recycle bin view displays limited number of character of deleted items.
I need to view the fullname of the file but the view column could not be widened.
Solution
Run PnP PowerShell command as follows:
Connect-PnPOnline -Url https://yourtenancy.sharepoint.com/sites/yoursite -UseWebLogin
Get-PnPRecycleBinItem | Select AuthorEmail, AuthorName, DeletedByEmail, DeletedByName, DeletedDateLocalFormatted, DirName, Title | Format-Table -AutoSize
Comments