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?
|
|
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. |
|||||||||||||||
|
|
Calling this function has worked for me:
|
|||||||
|
|
"If I modify or add an environment variable I have to restart the command prompt (minor inconvenience)." No, you don't have to restart the command prompt. Please stop messing around with crappy VBS or Batch solutions. There is a command line tool named "setx" for this job. It's for reading and writing env variables. It "Creates or modifies environment variables in the user or system environment, without requiring programming or scripting. The setx command also retrieves the values of registry keys and writes them to text files." |
|||||||||||
|
|
This works on windows 7: tested by typing echo %PATH% and it worked, fine. also set if you open a new cmd, no need for those pesky reboots any more :) |
||||
|
|
|
The best method I came up with was to just do a Registry query. Here is my example. In my example I did an install using a Batch file that added new environment variables. I needed to do things with this as soon as the install was complete, but was unable to spawn a new process with those new variables. I tested spawning another explorer window and called back to cmd.exe and this worked but on Vista and Windows 7, Explorer only runs as a single instance and normally as the person logged in. This would fail with automation since I need my admin creds to do things regardless of running from local system or as an administrator on the box. The limitation to this is that it does not handle things like path, this only worked on simple enviroment variables. This allowed me to use a batch to get over to a directory (with spaces) and copy in files run .exes and etc. This was written today from may resources on stackoverflow.com Orginal Batch calls to new Batch: testenvget.cmd SDROOT (or whatever the variable)
Also there is another method that I came up with from various different ideas. Please see below. This basically will get the newest path variable from the registry however, this will cause a number of issues beacuse the registry query is going to give variables in itself, that means everywhere there is a variable this will not work, so to combat this issue I basically double up the path. Very nasty. The more perfered method would be to do: Set Path=%Path%;C:\Program Files\Software....\ Regardless here is the new batch file, please use caution.
|
||||
|
|
|
Environment variables are kept in HKEY_LOCAL_MACHINE\SYSTEM\ControlSet\Control\Session Manager\Environment. Many of the useful env vars, such as Path, are stored as REG_SZ. There are several ways to access the registry including REGEDIT:
The output starts with magic numbers. So to search it with the find command it needs to be typed and redirected: So, if you just want to refresh the path variable in your current command session with what's in system properties the following batch script works fine: RefreshPath.cmd:
|
|||||
|
|
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... |
|||
|
|
|
Or you can just do it manually via
Windows XP Environment variables
Windows 7 Environment variables
http://www.binbert.com/blog/2010/09/default-environment-variable-values-of-windows-7-xp/ hope this helps. |
|||||
|
|
Edit: this only works if the environment changes you're doing are as a result of running a batch file. If a batch file begins with Almost every batch file I write begins with
|
||||
|
|