• We’re currently investigating an issue related to the forum theme and styling that is impacting page layout and visual formatting. The problem has been identified, and we are actively working on a resolution. There is no impact to user data or functionality, this is strictly a front-end display issue. We’ll post an update once the fix has been deployed. Thanks for your patience while we get this sorted.

Which files contains the search path under DOS?

The search path is an environment variable, not a file.

Are you really running under DOS, or are you running a different OS? Setting the environment variable is done differently in different OSes.
 
Ok. I've done it before in UNIX and the path was a file that you could edit. I
thought it was saved in a file when I was using win95. Now I'm using W2k.
I just saw that I need to use the %PATH% to append to it.

Thanks for you help,
J
 
man, this brings up some old memories.....
the file is autoexec.bat...here is how you put your path togather

path c:\dos;c:\windows\command;c:\windows;c:\whatever\the\path;

what dos are you using btw? i am more a fan of
Freedos
ahh the days of aui networking....how i <dont> miss thee
Craig Ynos
 
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
 


<< 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.
 
Thanks, I got it to work. I needed to set the path
because I want to play around with Apache's
Xalan program for XML.

 
Back
Top