Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How do I set the PATH environment variable to point to JRE version 1.5

Hi there I have a program that requires me to set the PATH environment variable to point to JRE version 1.5 as I need to access the program via a command prompt. So any ideas on how to do that?

like image 335
JavaNoob Avatar asked Dec 02 '22 04:12

JavaNoob


1 Answers

Go to the control panel > System > Advanced and edit your environment variables there. Append "; C:\path\to\the\jre\bin" to the PATH variable. Open a new terminal and profit.

like image 149
Borealid Avatar answered Dec 06 '22 10:12

Borealid