list-recycle-bin
Lists the content of the recycle bin folder
#Requires -Version 5.1
try {
(New-Object -ComObject Shell.Application).NameSpace(0x0a).Items() | Select-Object Name,Size,Path
exit 0
} catch {
throw
}This script has no configurable parameters.