<< Cool. I'll use the control panel method since that seems to be the easiest.
I used the command
path c:\blah\blah;%PATH%
and it appended the new path, but when I restarted the DOS prompt window it erased it. Why?
Thanks >>
Thats a temporary fix. The fix is only recorded for that once instance of the cmd shell. To make it permenant it would have to be resident in the registry or where ever Windows keeps it in win2k. Very similar to UNIX. You can change it in your .cshrc/.profile/.bash_profile/etc but that will become active next time you login, and you can change it by setting the $PATH variable (export PATH=$PATH:/new/path, setenv PATH $PATH:/new/path) which will only change the current session.