create bat file to remove cvs folder
@echo off
echo Deleting CVS folders and files under: %1
REM Open Folder specified by parameter.
cd %1
REM Recursive delete command
for /f "tokens=*" %%i in ('dir /b/a/s CVS*') do @rmdir /q /s "%%i"
echo Done!
then save it as delcvs.bat
Open regedit and goto: My Computer\HKEY_CLASSES_ROOT\Folder\shell\
Create new key with name Delete CVS Files then create sub key name command
Finally change data in command to path to delcvs.bat with %D %L at the end.


