How to Rename the Recycle Bin in Windows

Here is a quick registry tweak or script to rename the Recycle Bin icon caption in Windows 10 and earlier.

Rename the Recycle Bin text (caption) in Windows

There are two methods discussed. The first method uses a custom VBScript, and the second method uses registry editing using the Windows Registry Editor.

Using Windows Script to rename the Recycle Bin

  1. Copy the following contents to Notepad:
    Dim WshShell : Set WshShell = WScript.CreateObject("WScript.Shell")
    sBasekey = "HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\CLSID\"
    strBinName = Inputbox ("Enter a text for the Recycle Bin icon", "Rename Recycle Bin", "Recycle Bin")
    If trim(strBinName) <> "" then
       Wshshell.regwrite sBasekey & "{645FF040-5081-101B-9F08-00AA002F954E}\", strBinName, "REG_SZ"
       WshShell.AppActivate "Program Manager"
       Wshshell.SendKeys "{F5}"
    End if
  2. Save the file as rename_recycle_bin.vbs
  3. Double-click the script file to run it.
  4. When prompted, type a name for the Recycle Bin icon and click OK.rename the recycle bin - script

The script renames the Recycle Bin caption and refreshes the desktop by sending the F5 key automatically.



Using Registry Editor to rename the Recycle Bin

  1. Start Regedit.exe
  2. Navigate to the following registry branch:
    HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\CLSID\{645FF040-5081-101B-9F08-00AA002F954E}
  3. Double-click (default) and replace the existing text (“Recycle Bin”) with your preferred text.
  4. Exit the Registry Editor.
  5. Right-click on the desktop and click Refresh. Or, click on the desktop and then press F5.

The above methods work in all versions of Windows, including Windows 10.


One small request: If you liked this post, please share this?

One "tiny" share from you would seriously help a lot with the growth of this blog. Some great suggestions:
  • Pin it!
  • Share it to your favorite blog + Facebook, Reddit
  • Tweet it!
So thank you so much for your support. It won't take more than 10 seconds of your time. The share buttons are right below. :)

Ramesh Srinivasan is passionate about Microsoft technologies and he has been a consecutive ten-time recipient of the Microsoft Most Valuable Professional award in the Windows Shell/Desktop Experience category, from 2003 to 2012. He loves to troubleshoot and write about Windows. Ramesh founded Winhelponline.com in 2005.

Leave a Comment