in reply to Re: Windows %ENV and utf8
in thread Windows %ENV and utf8

If I can add something i remeber tye explaining me that on windows %ENV keys are case retentive: this was made because on such OS ENV is implemented in this way so %ENV reflect the behaviour.

Consider the following two examples:

set foo=bar & set FOO=BAR & set FOO foo=BAR set FOO=BAR & set FOO=bar & set FOO foo=bar

So for sure also %ENV keys (not just values) must be treated as special, very funny and tricky, strings. In short: do not do it! keep %ENV keys uppercase ASCII plain strings and values as close as possile to a plain ASCII string

L*

There are no rules, there are no thumbs..
Reinvent the wheel, then learn The Wheel; may be one day you reinvent one of THE WHEELS.