windows cmd 命令行设置环境变量

比如要把maven的变量追加到系统变量中,可以

set path=%path%;c:\apacheMaven\

上述只是临时改,

下面使用setx设置为永久环境变量,适用于bat中:

setx PATH "%PATH%;D:\Program Files\"

通过修改注册表的方式修改变量可以参考下面的这篇文章:

https://www.cnblogs.com/piepie/p/8482805.html 

你可能感兴趣的:(cmd)