Fixing 'PATH' in Environment Variables in Windows 7 for multiple applications

44,187

Separate the paths to Ruby and Java with your system's path separator character.

In case of Windows 7, it's

;

You'll be able to use both

Here's an example of Path variable with numerous applications.

C:\Program Files\TortoiseHg\;C:\Program Files\TortoiseSVN\bin;C:\Program Files (x86)\Microsoft SQL Server\100\Tools\Binn\;C:\Program Files\Microsoft SQL Server\100\Tools\Binn\;C:\Program Files\Microsoft SQL Server\100\DTS\Binn\
Share:
44,187
Admin
Author by

Admin

Updated on November 28, 2020

Comments

  • Admin
    Admin over 3 years

    After using JDK if I use ruby, I have to change 'PATH' in Environment Variables in Windows7. Is there a work around where I don't have to keep changing it even if I use multiple applications?

  • Naeem Ul Wahhab
    Naeem Ul Wahhab over 6 years
    Great. Thanks for the answer.