Microsoft's documentation says that an environment variable on Windows is limited to
only 32,767 characters
(link),
but does not say how to create such a long variable.
The problem here is that the tools that Windows provides all have their
limits :
The set and setx commands truncate values to 1023 characters.
Setting directly in the registry at
HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Session Manager\Environment
fails since regedit truncates entered strings after 2047 characters.
So you must use workarounds.
Use short folder names
You may see such names by using dir /x /ad
.
The following example shows that on my computer the folder Program Files (x86)
may be replaced by PROGRA~2
:
Use embedded environmental variables
If you have:
C:\this_is_a\long_path\that_appears\in_multiple_places\subdir1
C:\this_is_a\long_path\that_appears\in_multiple_places\subdir2
then you can create a new environment variable such as:
SET P1=C:\this_is_a\long_path\that_appears\in_multiple_places
after which your original paths become
%P1%\subdir1
%P1%\subdir2
You may also split PATH into two by creating a new variable, say NEWPATH
,
containing the excess paths and append ;%NEWPATH%
to the PATH variable.
Avoid using the
setx command
because it will directly resolve embedded environmental variables
and the resulting string will be once again too long.
Use a PowerShell script to set the PATH
PowerShell calls Windows API directly and so can approach the theoretical limit
of 32,767 characters for an environmental variable.
The script may contain commands such as:
[Environment]::SetEnvironmentVariable("Path", $longpath, "Machine")
In future posts, please add the text of the error message, which I assume you already searched for to confirm the question was not asked earlier ;-) Often, just hitting Ctrl+C in such dialog will copy it for you.
– Arjan – 2018-12-19T09:54:50.130Perhaps ask on software recommendations for a utility to detect duplicate entries and entries where the directory does not exist (uninstallers are lousy about updating the path). This would be trivial to code as a Python script.
– Mawg says reinstate Monica – 2019-09-24T12:17:10.500