It sounds like the install location for
cvs isn't included in the
environment variable PATH. Easiest way to verify if from a command prompt:
Code:
C:\Documents and Settings\Administrator>echo %PATH%
It should return something like this, plus the directory to the
cvs executable:
Code:
C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem
If not, you will need to add it to the PATH variable:
Code:
set PATH=%PATH%;C:\Path\To\CVS\Directory
Hope this helps.