I am trying to set my DOS environment variable in Ruby, and have it persist after the script exits. For example, if I want a ruby script set_abc_env.rb to set environment variable ‘ABC’ to ‘blah’, I expect to run the following:
C:> echo %ABC% C:> set_abc_env.rb C:> echo %ABC% blah
How do I do this?
You can access environment variables via Ruby ENV object:
Bad news is, as MSDN says, a process can never directly change the environment variables of another process that is not a child of that process. So when script exits, you lose all changes it did.
Good news is what Microsoft Windows stores environment variables in the registry and it’s possible to propagate environment variables to the system. This is a way to modify user environment variables:
The documentation also says you should log off and log back on or broadcast a WM_SETTINGCHANGE message to make changes seen to applications. This is how broadcasting can be done in Ruby: