PDA

View Full Version : SET permanent java path in win98


wanye
04-16-2003, 06:21 PM
how do i set path=c:\j2sdk1.4.1_02\bin in the autoexec.bat permanentally in win98..? i need help on that. thx

sage45
04-16-2003, 06:31 PM
You just answered your own question... ;)

Inside the AUTOEXEC.BAT look for an existing 'PATH=' line...

After locating this line you can do one of two things... Add the following to the end of that line:

;c:\j2sdk1.4.1_02\bin

-or-

Add the following somewhere in the AUTOEXEC.BAT after the above mentioned 'PATH=' line:

PATH=c:\j2sdk1.4.1_02\bin;%PATH%

HTH,

-sage-