To select all the files and folders inside a folder (or desktop) we need to press CTRL + A key from the keyboard. However, with a small trick, we can add this option to right click context menu in Windows 7. After end of the tutorial, we will get this select all option in right click context menu:

Here is the basic logic by which we will be able to add select all option to right click context menu in Windows 7
- We will create a vbs script, clicking itself will select all files and folders where it is located. Obviously, it is not possible to carry or copy paste this vbs script in every folder throughout your Windows 7 PC. So, we will move further.
- We will integrate this vbs script with a registry file to right click context menu, so that it becomes universally working in all folders.
Let us start: creating the vbs script for select all option
Open Notepad, write these lines:
1 2 | set oShell = WScript.CreateObject("WScript.Shell") oShell.SendKeys "^a" |
Save the file from File menu of notepad naming it as select_all.vbs ; make sure to select All files as file type in Notepad while saving it:
---

Place this file to C:/Windows ; accept any security prompt:

Integrating this vbs script with a registry file to get it on right click context menu in Windows 7
Again, open Notepad and write these lines:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | Windows Registry Editor Version 5.00 [HKEY_CLASSES_ROOTDirectoryBackgroundshellSelect all] @="" [HKEY_CLASSES_ROOTDirectoryBackgroundshellSelect allcommand] @=hex(2):57,00,73,00,63,00,72,00,69,00,70,00,74,00,2e,00,65,00,78,00,65,00,20, 00,22,00,25,00,77,00,69,00,6e,00,64,00,69,00,72,00,25,00,5c,00,53,00,65,00, 6c,00,65,00,63,00,74,00,5f,00,61,00,6c,00,6c,00,2e,00,76,00,62,00,73,00,22, 00,00,00 [HKEY_CLASSES_ROOTLibraryFolderbackgroundshellSelect all] @="" [HKEY_CLASSES_ROOTLibraryFolderbackgroundshellSelect allcommand] @=hex(2):57,00,73,00,63,00,72,00,69,00,70,00,74,00,2e,00,65,00,78,00,65,00,20, 00,22,00,25,00,77,00,69,00,6e,00,64,00,69,00,72,00,25,00,5c,00,53,00,65,00, 6c,00,65,00,63,00,74,00,5f,00,61,00,6c,00,6c,00,2e,00,76,00,62,00,73,00,22, 00,00,00 |
Save it as select_all.reg ; make sure to select All files as file type in Notepad while saving it (just like above).
You will get an registry file, double click it and accept all the security prompts. You will get the select all option in your right click context menu:

How to remove this select all option from right click context menu?
- Delete the vbs file from Windows folder.
- Create another registry file (or edit the above) ; just add a minus sign after beginning of each HKEY (just after ending of the third bracket; for the above reg key, you have to add at four places, right?). Like this: -HKEY_CLASSES.... It does not matter what ever you name the file. Run the registry file and you will get rid of the select all option from right click context menu.
As always, all the required vbs script, registry files are here for you. Click here to download the rar file and you can use immediately without any codings.
Why visitors still use to read news papers when in this technological world
the whole thing is available on web?