How to list global environment variables separately from user-specific environment variables?

12

7

In Windows (e.g. version 10) you can list environment variables using the command

set

How do you list just the environment variables that are the same for all users or just the environment variables that are for the current user or session?

RedGrittyBrick

Posted 2017-02-16T10:30:01.510

Reputation: 70 632

Answers

16

Things are a little more complicated than Microsoft sometimes make it seem.

A lot of the environment variables are stored in the Registry. This means you can query them using the reg command

Common to all users

reg query "HKLM\SYSTEM\CurrentControlSet\Control\Session Manager\Environment"

Specific to current user session

reg query HKCU\Environment
reg query "HKCU\Volatile Environment"

Set by user

If you permanently set your own environment variable using the setx variable value command it is stored in the registry but not made immediately available.

C:\>setx test removeme

SUCCESS: Specified value was saved.

C:\>reg query "HKCU\Environment"

HKEY_CURRENT_USER\Environment
    Path    REG_EXPAND_SZ    %USERPROFILE%\AppData\Local\Microsoft\WindowsApps;
    TEMP    REG_EXPAND_SZ    %USERPROFILE%\AppData\Local\Temp
    TMP    REG_EXPAND_SZ    %USERPROFILE%\AppData\Local\Temp
    test    REG_SZ    removeme

If you use the set variable=value command, the variable is available immediately but is not stored in the registry. You cannot use the reg command to list them although they are shown by set. These temporary environment variables do not persist after you end the command-prompt session.

Dynamic Environment Variables

There are constructs that act like environment variables that are not stored in the registry in this way. For example:

echo %TIME%

RedGrittyBrick

Posted 2017-02-16T10:30:01.510

Reputation: 70 632

1Just a curiosity: is it possible to refresh the variable previously added to registry? e.g. setx test removeme then something set test %test% so that you can have all the variables listed with a simple set? I was thinking that it is possible to implement a command/ batch script to make all them explicit upon request... – Hastur – 2017-02-16T11:02:23.490

@Hastur: Yes, that would work to make a new variable both immediately available and persistent. – RedGrittyBrick – 2017-02-16T11:05:03.167

@hastur @RedGrittyBrick - it is possible but is definitely not an oneliner in windows cmd. If you install chocolatey it has refreshenv.cmd utility which is 10 lines of code and basically it queries and refreshes registry entries – maoizm – 2017-06-08T11:00:41.780

Does the SET command show Dynamic Environment Variables? I'm trying to find anything and everything that Microsoft's Build Tools set during a session, just wanna cover my bases. – Ungeheuer – 2017-07-10T17:00:11.667

1

For clean output without extra lines and black spaces use the following commands in cmd.exe:

User environment variables:

FOR /F "tokens=1,3* skip=2" %G IN ('reg query HKCU\Environment') DO @echo %G=%H %I

Global (system) environment variables:

FOR /F "tokens=1,3* skip=2" %G IN ('reg query "HKLM\SYSTEM\CurrentControlSet\Control\Session Manager\Environment"') DO @echo %G=%H %I

It works in Windows 7-10, and most probably in earlier versions as well.

maoizm

Posted 2017-02-16T10:30:01.510

Reputation: 739

Thanks for this. Note that it drops part of the value if it has spaces in it. So a registry entry like VS140COMNTOOLS REG_SZ C:\Program Files (x86)\Microsoft Visual Studio 14.0\Common7\Tools shows up as just VS140COMNTOOLS=C:\Program. – metal – 2019-04-02T17:15:10.513

@metal thanks for reporting this corner case. Feel free to edit the answer if you find workaround for spaces - I do not have any windows computers now – maoizm – 2019-04-04T13:54:31.180

I have submitted an update to that effect. You or some mod will need to approve it. – metal – 2019-04-04T14:36:23.827

1

type the batch command: echo %temp%

If the "temp" environment variable contains "H:\Users\amacm\AppData\Local", Windows will immediately respond with the following:

H:\Users\amacm\AppData\Local

If there is no environment variable named "temp", Windows will respond with the following:

%temp%

Art McDonald

Posted 2017-02-16T10:30:01.510

Reputation: 11