This script lists files in the $Recycle.Bin
folder (known as "Recycle Bin") in TSV format.
# List files in the `$Recycle.Bin` to stdout
Get-RecycleBinFiles.ps1
# List files in the `$Recycle.Bin` and save to a file
Get-RecycleBinFiles.ps1 > $filepath # Replace `$filepath` with your desired file path.