@echo off
setlocal ENABLEDELAYEDEXPANSION
rem
rem Add c:\bin to the path
rem
rem
rem
rem There are two values we can use for the PATHKEY. The one that starts
rem with HKEY_LOCAL_MACHINE sets the path that's used by all processes and
rem users on the system. The PATHKEY that starts with HKEY_CURRENT_USER
rem updates the part of the Path that only visible to processes running
rem under the current user account.
rem
set PATHKEY=HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Session Manager\Environment
set PATHKEY=HKEY_CURRENT_USER\Environment
set PATHVAR=Path
set TMPFILE=%TEMP%\addpath.txt
set ADDPATH=c:\bin
rem
rem Read the Path value from the registry into a file. I could have coded
rem this with no temporary file by using:
rem for /f "delims=" %%i in ('REG QUERY "%PATHKEY%" /v "%PATHVAR%" 2>nul:') do set XLINE=%%i
rem However, having the temporary file was useful for debugging and as
rem updating the path is something we don't often do we don't care if
rem doing so is a bit slower.
rem
REG QUERY "%PATHKEY%" /v "%PATHVAR%" >"%TMPFILE%" 2>nul:
if errorlevel 1 goto :newpath
rem
rem REG QUERY outputs several lines. We only care about the last non-blank line
rem Fortunately, a 'for' loop ignores blank lines.
rem
for /f "delims=" %%i in (%TMPFILE%) do set XLINE=%%i
rem
rem Extract the value from the Path variable. Here's what we expect to see
rem in XLINE though with with spaces shown as ~ symbols:
rem
rem ~~~~Path~~~~REG_EXPAND_SZ~~~~Path-is-here..."
rem
rem See below for other ways we can extract the path value from XLINE.
rem
for /f "tokens=1,2,* delims= " %%i in ("!XLINE!") do set VARNAME=%%i & set VARTYPE=%%j & set XVALUE=%%k
rem
rem Append an element to the Path.
rem
set NEWPATH=!XVALUE!;!ADDPATH!
rem
rem Update the path
rem
REG ADD "%PATHKEY%" /v "%PATHVAR%" /t REG_EXPAND_SZ /d "!NEWPATH!" /f
goto :done
rem
rem The Path variable does not exist and so create it
rem
:newpath
REG ADD "%PATHKEY%" /v "%PATHVAR%" /t REG_EXPAND_SZ /d "!ADDPATH!"
goto :done
rem
rem Delete the temporary file.
rem
:done
del "%TMPFILE%"
endlocal
goto :eof
rem
rem Here are some variations for parsing XLINE to extract the value.
rem
rem
rem Quick and dirty method. It takes advantage of that REG QUERY returns a
rem line with four spaces, the variable name which we know is four
rem characters, four spaces, the variable type which we know is
rem REG_EXPAND_SZ and is 13 characters, four spaces, and then the value. As
rem some systems may be using REG_SZ Path strings the quick and dirty method
rem seems like a bad idea.
rem
set XVALUE=!XLINE:~29!
rem
rem One flaw with the method I used in the code above is that you are
rem allowed to have spaces in variable names. Here's a slight modification
rem to the code to support spaces in variable names. It takes advantage of
rem the fact that REG VIEW always puts four spaces each of the fields. We
rem first translate instances of four spaces into vertical bars and use that
rem character as the delimiter when parsing the line.
rem
rem I could have used any character as the delimiter as long as it's one
rem that will not appear in the variable name, the variable type, or as the
rem first character(s) of the variable's value. Some people use a tab here.
rem I chose not to do that in this example as the tabs are not visible.
rem
rem The code still has a flaw in that it will fail if the variable name
rem contains four consecutive spaces.
rem
set XLINE=!XLINE: =^|!
for /f "tokens=1,2,* delims=|" %%i in ("!XLINE!") do set VARNAME=%%i & set VARTYPE=%%j & set XVALUE=%%k
要进行持久更改,请使用
setx
.例如,要将文件夹添加到当前路径的末尾,请使用:
您的更改在当前会话中不可见
cmd.exe
,但它将在以后的所有会话中可见。SETX
还允许在远程系统上设置系统环境变量。处理 Path 变量很棘手,因为它是系统 Path 和用户 Path 变量的组合。以前的答案没有考虑到这一点。例如
将用户路径设置为整个当前系统路径,加上用户路径,然后将 ';C:\MyFolder' 附加到该路径。如果我使用过,
SETX /M PATH %PATH%;C:\MyFolder
那么系统路径会将当前用户路径添加到其中。对除 Path 之外的任何环境变量使用
SETX
or都可以。SETX /M
不幸的是,处理路径变量很痛苦,因为它涉及更新注册表并且能够附加新值,我们必须首先将注册表项复制到环境变量中,将要添加的目录附加到路径中,然后编写结果返回注册表。还有一个问题是路径变量存储为 REG_EXPAND_SZ 字符串,并且系统路径通常包含对
%SystemRoot%
. 这意味着您用于读取、操作和写入 Path 变量的任何机制在理想情况下都不应扩展任何内容。最后,没有用户路径变量是很常见的,这意味着更新路径的代码需要考虑如果您尝试读取不存在的变量会出现的错误。
下面是一些示例代码,可以通过更新注册表中的值来更新路径。
自 DOS 时代以来一直如此:
来自 Mueller 的书 Administering Windows Server 2008 core - use WMIC
WMIC 环境 Name="Path" SET VariableValue="C:\Temp;%PATH%
如果你想设置一个包含空格的路径或其他环境变量,我发现它更容易使用
regedit
——你可以从 Server Core 上的命令提示符开始。系统范围的环境变量在
HKLM\SYSTEM\CurrentControlSet\Control\Session Manager\Environment
,用户环境变量在HKCU\Environment
.@user3347790 的回答提出了一些有效的观点:上面的许多方法都将用扩展路径替换路径(例如
%ProgramFiles%
,或%SystemRoot%
或%UserProfile%
将被永久扩展),并且它们还将机器和用户路径合并为一个。基于此,从该答案改编代码(如果您需要代码)或仅使用regedit
(如果您只想手动进行一些更改)可能更安全......