How can I set a system-wide environment variable from within MATLAB?
12 次查看(过去 30 天)
显示 更早的评论
MathWorks Support Team
2009-6-27
编辑: MathWorks Support Team
2021-7-26
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
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 个评论
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Performance and Memory 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!