Registry Trick : Rename the Recycle Bin

In any Windows Operating System, you will not find rename option for Recycle Bin. Just for fun if you want to rename the Recycle Bin, you can do it by some Registry Trick.

Before going ahead please ensure that you are fully aware of windows registry editor and consequences of modifying the registry incorrectly.  To have a backup of the registry follow steps mentioned in the link Backup & Restore Windows Registry.

Now if you are ready to rename Recycle Bin then follow these steps in order:
1. Copy following lines in notepad on your computer.

Windows Registry Editor Version 5.00


[HKEY_CLASSES_ROOT\CLSID\{645FF040-5081-101B-9F08-00AA002F954E}\ShellFolder] 
"Attributes"=hex:50,01,00,20 
"CallForAttributes"=dword:00000000

2.  Save the file with name as "RegistryChanges.reg". Don't forget that we are using extention .reg for saving.
3. Now double click the file "RegistryChanges.reg". This will add the above mentioned registry keys to your computer registry. Double clicking will launch the dialog box, click Yes  and you are done.
4. Now go to desktop and right click the Recycle Bin, you will find Rename option in right click menu. 

Now as you have renamed your Recycle Bin, you will want that no one should rename that to anything else. 
To do this you will require to revert the registry keys you have modified in step 3. Follow below steps to revert the value of registry keys.
1. Copy following lines in notepad on your computer.
Windows Registry Editor Version 5.00
[HKEY_CLASSES_ROOT\CLSID\{645FF040-5081-101B-9F08-00AA002F954E}\ShellFolder]
"Attributes"=hex:40,01,00,20
"CallForAttributes"=dword:00000040


2.  Save the file with name as "RegistryOriginal.reg". Don't forget that we are using extention .reg for saving.
3. Now double click the file "RegistryOriginal.reg". This will launch the dialog box, click Yes  and you are done.
4. Now go to desktop and right click the Recycle Bin, you will not find Rename option in right click menu. 

2 comments:

  1. excellent piece of information, I had come to know about your website from my friend kishori, pune,i have read atleast 7 posts of yours by now, and let me tell you, your site gives the best and the most interesting information. This is just the kind of information that i had been looking for, i'm already your rss reader now and i would regularly watch out for the new posts, once again hats off to you! Thanx a lot once again, Regards, rename recycle bin

    ReplyDelete
    Replies
    1. Thanks buddy!!! This will definitely encourages me to post more and more such findings on this blog.

      Delete

Golang: Http POST Request with JSON Body example

Go standard library comes with "net/http" package which has excellent support for HTTP Client and Server.   In order to post JSON ...