5

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

3 Answers3

5

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

Jonny Wright
  • 991
  • 5
  • 16
  • 36
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)

elw
  • 21
0

You could left click on a blank space on your desktop, start typing "recycle", then press enter.

This will open the recycle bin and show you the contents. Then you will have options across the top to "restore the files" or "Empty the recycle bin".

Carl B
  • 6,660