How to set the path

  • Thread starter Thread starter anime
  • Start date Start date
A

anime

How to set the path in win XP with System > Environment Variables.
existing is
%SystemRoot%\system32;%SystemRoot%;%SystemRoot%\System32\Wbem

I need add F:\Source\bin and F:\Source2\code
 
anime said:
How to set the path in win XP with System > Environment Variables.
existing is
%SystemRoot%\system32;%SystemRoot%;%SystemRoot%\System32\Wbem

I need add F:\Source\bin and F:\Source2\code

Just edit and add it to the path at the same place, insert semi-colons
between the different paths:

%SystemRoot%\system32;%SystemRoot%;%SystemRoot%\System32\Wbem;F:\Source\bin;F:\Source2\code

John
 
John John - MVP said:
Just edit and add it to the path at the same place, insert semi-colons
between the different paths:

%SystemRoot%\system32;%SystemRoot%;%SystemRoot%\System32\Wbem;F:\Source\bin;F:\Source2\code

John
 
anime said:
How to set the path in win XP with System > Environment Variables.
existing is
%SystemRoot%\system32;%SystemRoot%;%SystemRoot%\System32\Wbem

I need add F:\Source\bin and F:\Source2\code

Control Panel|System, Advanced tab. Click the "Environment Variables"
button at the bottom of the window. You can change the path and other
environment variables for only your own userid, or for everybody (if
you have permission).
 
-----------

is the path uppercase/lowercase sensitive?

Thank you.

If the path segment points to a disk that is NTFS or FAT formatted,
then it is not case sensitive. If the path segment points to a
networked drive that is hosted on a Linux Server, then it might be.

-- John
 
Back
Top