I want to iterate over the environment keys and print a list of these items.
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
You can access the user environment variables via the appropriate
This script will output the variable names along with values (non-expanded), e.g.: TEMP=%USERPROFILE%\Local Settings\Temp TMP=%USERPROFILE%\Local Settings\Temp Path=%PATH% PATHEXT=%PATHEXT%;.tcl If you need the variable names only, you can extract them like this:
Edit: To expand the variables, use the
|
||||
|
|
|
When I tried the code given in the answer, I got an error on line 4. I believe it should be:
|
|||
|
|