• Welcome to Tux Reports: Where Penguins Fly. We hope you find the topics varied, interesting, and worthy of your time. Please become a member and join in the discussions.

How to set the path

A

anime

Flightless Bird
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
 
J

John John - MVP

Flightless Bird
anime wrote:
> 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
 
A

anime

Flightless Bird
"John John - MVP" <audetweld@nbnet.nb.ca> wrote in message
news:ubX85bd8KHA.420@TK2MSFTNGP02.phx.gbl...
> anime wrote:
>> 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


-----------

is the path uppercase/lowercase sensitive?

Thank you.
 
J

John John - MVP

Flightless Bird
anime wrote:
>
> "John John - MVP" <audetweld@nbnet.nb.ca> wrote in message
> news:ubX85bd8KHA.420@TK2MSFTNGP02.phx.gbl...
>> anime wrote:
>>> 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

>
> -----------
>
> is the path uppercase/lowercase sensitive?


No.


> Thank you.


You're welcome.

John
 
T

Tim Slattery

Flightless Bird
"anime" <anime@nospam.microsoft.news> wrote:

>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).

--
Tim Slattery
Slattery_T@bls.gov
http://members.cox.net/slatteryt
 
J

John Wunderlich

Flightless Bird
"anime" <anime@nospam.microsoft.news> wrote in
news:#6lBNud8KHA.5716@TK2MSFTNGP06.phx.gbl:

>
> "John John - MVP" <audetweld@nbnet.nb.ca> wrote in message
> news:ubX85bd8KHA.420@TK2MSFTNGP02.phx.gbl...
>> anime wrote:
>>> 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:/S
>> ource\bin;F:/Source2\code
>>
>> John

>
> -----------
>
> 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
 
Top