If I modify or add an environment variable I have to restart the command prompt (minor inconvenience). Is there a command I could execute that would do this without restarting CMD?
|
5
|
|||
|
|
|
You can capture the system environment variables with a vbs script, but you need a bat script to actually change the current environment variables, so this is a combined solution. Create a file named
create another file name resetvars.bat containing this code, same location:
When you want to refresh the environment variables, just run resetvars.bat. Apologetics: The two main problems I had coming up with this solution were a. I couldn't find a straightforward way to export environment variables from a vbs script back to the command prompt, and b. the PATH environment variable is a concatenation of the user and the system PATH variables. I'm not sure what the general rule is for conflicting variables between user and system, so I elected to make user override system, except in the PATH variable which is handled specifically. I use the weird vbs+bat+temporary bat mechanism to work around the problem of exporting variables from vbs. Note: this script does not delete variables. This can probably be improved. ADDED If you need to export the environment from one cmd window to another, use this script (let's call it
Run
|
||||||||
|
|
|
By design there isn't a built in mechanism for Windows to propagate an environment variable add/change/remove to an already running cmd.exe, either from another cmd.exe or from "My Computer -> Properties ->Advanced Settings -> Environment Variables". If you modify or add a new environment variable outside of the scope of an existing open command prompt you either need to restart the command prompt, or, manually add using SET in the existing command prompt. The latest accepted answer shows a partial work-around by manually refreshing all the environment variables in a script. The script handles the use case of changing environment variables globally in "My Computer...Environment Variables", but if an environment variable is changed in one cmd.exe the script will not propagate it to another running cmd.exe. |
||||||||||
|
|
|
no, I don't think so... you can set them manually though. So you can put them in a batch file or something. probably could make a utility/script (if someone hasn't already) that queries the registry and sets the current enviroment to be the same |
||
|
|
|
|
There is no straight way, as Kev said. In most cases, it is simpler to spawn another CMD box. More annoyingly, running programs are not aware of changes either (although IIRC there might be a broadcast message to watch to be notified of such change). It have been worse: in older versions of Windows, you had to log off then log back to take in account the changes... |
||
|
|
|
|
??????????????????? |
||
|
|
