Can't find / open recycle bin in Windows 7

This may sound like a stupid question but I've configured my Desktop to display the Trashcan but I cannot click on it because I've got so many files and folder on my desktop that these flow past the right side of my desktop and the Trashcan or Recycle Bin or whatever it's called is no longer visible so I cannot empty it.

Is there a quicker way to open the trash can / recycle bin without having to tidy up my messy desktop?

Thanks.


I've tried running a search for Recycle bin (AKA Cestino on my localized version of Windows 7) in Windows Explorer but no luck:

enter image description here


Solution 1:

Open Windows Explorer (Win Key+E), select the address bar (Alt+D), type in "Recycle Bin", hit enter, your in.

Alternatively, open the Run window (Win Key+R) and type shell:recyclebinfolder

Solution 2:

You can try powershell:

@ECHO OFF start /b /wait powershell.exe -command "$Shell = New-Object -ComObject Shell.Application;$RecycleBin = $Shell.Namespace(0xA);$RecycleBin.Items() | foreach{Remove-Item $_.Path -Recurse -Confirm:$false}"

(from: https://stackoverflow.com/a/21111992)