315

I want to set an environment variable from the command prompt and then be able to access it globally (for instance, I should see it by going to System -> Environment Variables).

When I use the set command, it isn't accessible in a new cmd session.

set NEWVAR=SOMETHING
echo %NEWVAR%

Related questions:

Shane
  • 3,760

5 Answers5

357

To make the environment variable accessible globally you need to set it in the registry. As you've realised by just using:

set NEWVAR=SOMETHING

you are just setting it in the current process space.

According to this page you can use the setx command:

setx NEWVAR SOMETHING

setx is built into Windows 7, but for older versions may only be available if you install the Windows Resource Kit

nhinkle
  • 37,661
ChrisF
  • 41,540
49

We can also use "setx var variable /M" to set the var to system environment variable level instead of user level.

Note: This command should be run as administrator.

music2myear
  • 49,799
Minh Chau
  • 501
13

You can use setx env var [/M] as mentioned above. If it doesn't take effect you can use refreshenv to refresh environment variables. You don't have to restart your computer, explorer.exe or your command prompt to do that.

Edit: apparantly refreshenv doesn't come naturally with Windows, so here's the source: https://pastebin.com/1fJqA0pT
Save as RefreshEnv.cmd and place it in a folder that's included in your PATH environment variables

DFSFOT
  • 231
6

System variables can be set through CMD and registry For ex. reg query "HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Session Manager\Environment" /v PATH

All the commonly used CMD codes and system variables are given here: Set Windows system environment variables using CMD.

Open CMD and type Set

You will get all the values of system variable.

Type set java to know the path details of java installed on your window OS.

1

I want to add that if you are using the /s parameter with setx in order to set environment variables on a remote computer, the "Remote Registry" service needs to be running on the target machine or else you will receive a "ERROR: The specified operation could not be completed."

(I have asked Microsoft to update their TechNet article on setx to include this information.)