Environment variables don't work

1

I can't get any environment variables to work besides Java. Here's a picture to show what I mean:

enter image description here

Can anyone help out?

James

Posted 2011-09-23T00:48:06.310

Reputation: 13

Answers

3

Environment variables don't work like that.

To substitute the value of an environment variable, use %VariableName%.
Thus, you can write `%CACHE%.

java is working because java.exe is already in the system %PATH%.

SLaks

Posted 2011-09-23T00:48:06.310

Reputation: 7 596