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

조회 수: 19 (최근 30일)
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

채택된 답변

MathWorks Support Team
MathWorks Support Team 2021년 6월 17일
편집: MathWorks Support Team 2021년 7월 26일
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.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Use COM Objects in MATLAB에 대해 자세히 알아보기

제품


릴리스

R2014a

Community Treasure Hunt

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

Start Hunting!

Translated by