How can I set a system-wide environment variable from within MATLAB?

12 visualizzazioni (ultimi 30 giorni)
I want to set an environment variable from within MATLAB. The value I set should be visible even for other processes on my system. If I use the "setenv" function in MATLAB, the variable is only visible in the current MATLAB process. The same thing happens if I use the DOS command "set":
>> !set my_var=some_value

Risposta accettata

MathWorks Support Team
MathWorks Support Team il 17 Giu 2021
Modificato: MathWorks Support Team il 26 Lug 2021
This is a limitation of the Windows operating system. Environment variables that are set from within a process, instead of being set through the control panel, are visible only to that process.
A possible workaround would be to use ActiveX functionality, as implemented in the attached file. Please note that setting a system-wide variable this way requires a restart in order for the changes to take effect.
As another possible workaround, Microsoft offers a tool called "setx" which allows you to set system-wide environment variables. This command is available in Windows versions later than Windows XP Service Pack 2 and Windows 2000.
Here is an example how to use it from within MATLAB:
>> !setx my_var some_value
This way of setting a system-wide environment variable does not require a restart of Windows or user re-logging on. However, note that if you use the Windows command window and
the "set" command to view the environment variables, you will need to restart the command window to see the change.

Più risposte (0)

Categorie

Scopri di più su Performance and Memory in Help Center e File Exchange

Prodotti


Release

R2014a

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by