Click to See Complete Forum and Search --> : NT Environment


JonathanM
June 18th, 2000, 11:52 PM
Am I doing something wrong or does the order of the environment really matter.
example:
A=%C% (REG_EXPAND_SZ)
B=C:\Temp (REG_SZ)
C=%B%\Test (REG_EXPAND_SZ)
output:
A=%C%
B=C:\Temp
C=C:\Temp\Test

Why doesn't A=C:\Temp\Test?

July 19th, 2000, 06:42 PM
Hi,

The order of the environment really matter ....
You need assigning before using

Andrea

JonathanM
July 19th, 2000, 07:14 PM
Cheers,

Thanks for your response.