如何通过 cmd 将 Windows 10 中的系统“PATH”环境变量添加到用户环境变量中?

如何通过 cmd 将 Windows 10 中的系统“PATH”环境变量添加到用户环境变量中?

通过使用,setx "%path%;c:\whateverFolder我只需将系统路径变量复制到用户路径变量,因此复制它,并且只有在复制之后才添加所需的文件夹。是否可以将其添加到系统路径变量中。而不是用户路径,如果可以,我该怎么做?

答案1

您仍然可以使用setx 命令,通过添加参数/m

/m  Specifies to set the variable in the system environment. The default setting is the local environment.

像这样:

setx /M path "%path%;C:\your\path\here\"

相关内容