This guide will show you how to add a "select all" option to windows 7's rightclick menu first open up note pad and paste this into it..
WScript.CreateObject(“WScript.Shell”).SendKeys “^a”
And save it as " SelectAll.vbs " (No quotation marks) in youe WINDOWS directory.
Now open up a new file and paste this into it..
ECHO WScript.CreateObject("WScript.Shell").SendKeys "^a" > %windir%\SelectAll.vbs
REG ADD "HKCR\Directory\Background\shell\Select All" /v "Position" /d "Top" /f
REG ADD "HKCR\Directory\Background\shell\Select All\Command" /d "wscript %windir%\SelectAll.vbs" /f
And save it as " Add Select All Option.bat " (No quotation marks) where ever you want..
Now open " Add Select All Option.bat " and it should now give you a select all option in your right click menu..
Un-installation...
If for whatever reason you don't want the option any more there is an easy fix. Yet again open up notepad and paste this into it..
DEL %windir%\SelectAll.vbs
REG DELETE "HKCR\Directory\Background\shell\Select All" /f
And save it as " Undo.bat ", Then run it.
WScript.CreateObject(“WScript.Shell”).SendKeys “^a”
And save it as " SelectAll.vbs " (No quotation marks) in youe WINDOWS directory.
Now open up a new file and paste this into it..
ECHO WScript.CreateObject("WScript.Shell").SendKeys "^a" > %windir%\SelectAll.vbs
REG ADD "HKCR\Directory\Background\shell\Select All" /v "Position" /d "Top" /f
REG ADD "HKCR\Directory\Background\shell\Select All\Command" /d "wscript %windir%\SelectAll.vbs" /f
And save it as " Add Select All Option.bat " (No quotation marks) where ever you want..
Now open " Add Select All Option.bat " and it should now give you a select all option in your right click menu..
Un-installation...
If for whatever reason you don't want the option any more there is an easy fix. Yet again open up notepad and paste this into it..
DEL %windir%\SelectAll.vbs
REG DELETE "HKCR\Directory\Background\shell\Select All" /f
And save it as " Undo.bat ", Then run it.
Last edited: