Overcoming the 1024 character limit with setx

76

35

I am trying to set environment variables using the setx command, such as follows

setx PATH "f:\common tools\git\bin;f:\common tools\python\app;f:\common tools\python\app\scripts;f:\common tools\ruby\bin;f:\masm32\bin;F:\Borland\BCC55\Bin;%PATH%"

However, I get the following error if the value is more then 1024 characters long:

WARNING: The data being saved is truncated to 1024 characters.

SUCCESS: Specified value was saved.

But some of the paths in the end are not saved in variable, I guess due to character limit as the error suggests.

Madhur Ahuja

Posted 2012-02-08T19:27:24.020

Reputation: 1 667

1

Look into Rapid Environment Editor which allows you to edit all envirnoment variables graphically (you can also save a backup also).

– ja72 – 2016-12-17T19:46:05.917

3Is anyone else bother by this claiming success when it clearly does not do what was requested? Is it not troubling that this doesn't fail while leaving the path exactly how it was? – Chad Schouggins – 2017-07-17T16:00:36.287

Does this still truncate on windows 10? – cowlinator – 2017-07-22T00:52:19.847

1Yes, it does on Windows 10 – Ivan – 2018-03-23T00:26:43.703

There's a list of alternative ways to edit the %PATH% at http://superuser.com/questions/297947

– Ehtesh Choudhury – 2013-10-10T05:15:25.397

Answers

48

Your best bet is to edit the registry directly.

Navigate to HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Session Manager\Environment and edit the Path value (then reboot to activate the new value).

Note however that while you can enter a very long path, (up to the maximum environment variable length; 2,048 or 32,768 bytes depending on the source), not all software will be able to read and handle it correctly if it is too long.

Synetech

Posted 2012-02-08T19:27:24.020

Reputation: 63 242

What about the dialog box that allows you to set %PATH%? Editing the registry seems a bit extreme.

– Braden Best – 2016-07-13T21:59:23.793

1For current user, use HKEY_CURRENT_USER\Environment – Shital Shah – 2016-09-27T05:28:00.597

1Is reboot really required here ? How does setx do it ? Setx does not require reboot. – Madhur Ahuja – 2012-02-09T14:10:38.090

11Yes, a reboot is required. setx edits the registry as I indicated, then broadcasts a WM_SETTINGCHANGE message. This tells all top-level windows that a system setting has changed (in this case an environment variable). Without that, Explorer and programs you opened with it will not know about the change. You could broadcast the message yourself manually (I wrote a program to do just that, and a batch file to replace SETX that makes a registry edit followed by the broadcast), but just like setx and the System Properties envvar dialog, it has side-effects that make rebooting preferable. – Synetech – 2012-02-09T19:05:46.010

Can you share your program with me ? I will be very useful. – Madhur Ahuja – 2012-02-10T03:08:38.187

I suppose, but like I said, it won’t help. It has the same effects that setx and the Env-Var dialog do. It notifies the system that the vars. have changed, but they don’t actually take effect until you restart them. In other words, you have to exit and re-run every program that you want to know about the change. Is there a reason you can’t reboot? Can the longer path wait until you can? – Synetech – 2012-02-10T03:28:04.810

2

Oh and editing an env.var. actually causes problems if you don’t reboot because any environment variables that contain other variables will stop being expanded. For example, I just broadcast it and now this is my path and I get an error because the path is now “broken”/empty. None of the vars will expand properly again until I reboot. Unfortunately this is “normal”. :-|

– Synetech – 2012-02-10T03:40:28.143

3

I found a small PowerShell script that will broadcast the WM_SETTINGCHANGE message.

– Justin Dearing – 2012-04-07T23:13:30.673

10You can use the above registry method via the REG add command and then use SETX to set some other variable to itself (ie: SETX /M USERNAME %USERNAME%). This will cause the WM_SETTINGCHANGE message to be set and give your the ability to set the path from a batch file. – Art – 2012-09-14T02:26:16.417

31

if you are using windows vista or higher, you can make a symbolic link to the folder. for example:

mklink /d C:\pf "C:\Program Files"
mklink /d C:\pf86 "C:\Program Files (x86)"

would make a link so c:\pf would be your program files folder. I shaved off 300 characters from my path by using this trick.

(I know it's not related to setx but it is useful for people which are searching overcomming on 1024 char limit)

Reza

Posted 2012-02-08T19:27:24.020

Reputation: 592

18

You could use a PowerShell script similar to the following:

$newPath = 'f:\common tools\git\bin;f:\common tools\python\app;f:\common tools\python\app\scripts;f:\common tools\ruby\bin;f:\masm32\bin;F:\Borland\BCC55\Bin'
$oldPath = [Environment]::GetEnvironmentVariable('path', 'machine');
[Environment]::SetEnvironmentVariable('path2', "$($newPath);$($oldPath)",'Machine');

The Environment.SetEnvironmentVariable() API call will broadcast WM_SETTINGCHANGE so you do not need to reboot.

Justin Dearing

Posted 2012-02-08T19:27:24.020

Reputation: 2 704

1In the 3rd line, I'm not sure what benefit the extra dollar signs and parentheses bring. Couldn't you just say [Environment]::SetEnvironmentVariable('path', "$newPath;$oldPath",'Machine') ? – twasbrillig – 2015-01-15T19:21:21.780

1@twasbrillig I'm just careful when I'm including a variable in a string. in this case its unecessary. – Justin Dearing – 2015-01-15T20:46:36.267

3You can call this from an Administrator Command Prompt: @"%SystemRoot%\System32\WindowsPowerShell\v1.0\powershell.exe" -NoProfile -ExecutionPolicy Bypass -Command "[Environment]::SetEnvironmentVariable('path',\"C:\Program Files (x86)\GNU\GnuPG;$([Environment]::GetEnvironmentVariable('path','Machine'))\",'Machine');" – Mark C – 2017-07-18T19:14:25.830

Don't you also need the following line: [Environment]::SetEnvironmentVariable('path', "$newPath",'Machine'); – Fedor Steeman – 2013-08-28T13:21:22.493

7

This open-source SetEnv command-line tool is good to edit the PATH and other environment variables without limitations. It uses a dynamic buffer so no static limitations like 1024.

http://www.codeproject.com/Articles/12153/SetEnv

The choice of a % as a prefix to append to a variable could have been better though, as makes the syntax difficult sometimes if used with other batch local variables...

Kharlos Dominguez

Posted 2012-02-08T19:27:24.020

Reputation: 255

> SetEnv tool is good to edit the PATH and other environment variables without limitations   Indeed. In fact, I had personally worked with Darka on that page to help make SetEnv even better so that it can fully support expanding/sub-variables (the Dynamic Variable Expansion section), which actually helps to reduce the length of the raw path. – Synetech – 2012-06-28T05:39:46.687

4

A far superior tool than setx for path manipulation is pathed.exe. Unfortunately, it's limited to editing the path.

In addition to a superior user experience than setx, you don't have a 1024 character limit. Unlike direct registry manipulation, this application uses the Environment.SetEnvironmentVariable() API call which will broadcast WM_SETTINGCHANGE.

Justin Dearing

Posted 2012-02-08T19:27:24.020

Reputation: 2 704

2There's a list of other tools (including pathed.exe) at superuser.com/questions/297947/is-there-a-convenient-way-to-edit-path-in-windows-7 – Ehtesh Choudhury – 2013-10-10T05:14:33.987

2

My favorite way is to change the folder names in the PATH variables to use the 8.3 names. This StackOverflow answer has an awesome script (run from a .bat file) that will generate the "minified" version of the entire PATH variable, which you can then paste into the Edit Variable dialog(s). Only caveat is that you will need to split out the SYSTEM and USER parts. As the script goes through and figures out the minified version for each folder, it discards and alerts you of any invalid/non-existent paths. Nice little clean up bonus.

Andrew Steitz

Posted 2012-02-08T19:27:24.020

Reputation: 121

Be careful if you have used fsutil.exe behavior set disable8dot3 1. – Andrew Morton – 2016-01-06T19:04:08.873

@AndrewMorton good point but wouldn't that be "handled" by the fact that the script doesn't "generate" the 8.3 name, it just reports the 8.3 name that the file system assigned? So if a folder did not have an 8.3 name, the script would not propose a substitute. However, using fsutil 8dot3name strip AFTER using the script would definitely cause problems for affected folders. – Andrew Steitz – 2016-01-13T18:55:59.610

Unfortunately I don't have a spare drive or system to check it on. However, having used some fsutil 8dot3name strip earlier today and considering that (a) it checks the registry first and (b) the path is stored in the registry, my earlier concern may be unwarranted, as long as the user does not use the /f (force) option. – Andrew Morton – 2016-01-13T19:05:26.080

2

You can put this line in your BAT:

setx path "%%path%%;c:\drive\fr;c:\drive\installs\7z"

See the double %%.

(Reference: https://support.microsoft.com/en-us/kb/75634)

Aminadav Glickshtein

Posted 2012-02-08T19:27:24.020

Reputation: 396

1Link is now broken – Ivan – 2018-03-23T00:29:26.217

1WARNING! This possibly will break things, it will write %path%;c:\...[snip]...\7z to the user path variable, dropping anything else you had there. – Eugene Petrov – 2018-05-31T22:53:42.987

The PATH environment variable used by programs is a combination of the machine and local PATH variables. In addition to destroying the current data in the local path I don't think this does anything. Having %path% in the local path environment variable should have no effect. – AnnanFay – 2019-03-14T13:30:57.100

0

I think the best way is the next (with powershell) With this way also you avoid the litmit of 1024 character.

You can see the code on: https://gist.github.com/drazul/b92f780689bd89a0d2a7

#------------ Add path to system variable -------------------------------------

$path2add = ';C:\path;'
$systemPath = [Environment]::GetEnvironmentVariable('Path', 'machine');

If (!$systemPath.contains($path2add)) {
    $systemPath += $path2add
    $systemPath = $systemPath -join ';'
    [Environment]::SetEnvironmentVariable('Path', $systemPath, 'Machine');
    write-host "Added to path!"
    write-host $systemPath
}

#------------ Delete path from system variable --------------------------------

$path2delete = 'C:\path;'
$systemPath = [Environment]::GetEnvironmentVariable('Path', 'machine');

$systemPath = $systemPath.replace($path2delete, '')
$systemPath = $systemPath -join ';'

[Environment]::SetEnvironmentVariable('Path', $systemPath, 'Machine');

write-host "Deleted from path!"
write-host $systemPath

#------------ Clean system variable -------------------------------------------

$systemPath = [Environment]::GetEnvironmentVariable('Path', 'machine');

while ($systemPath.contains(';;')) {
    $systemPath = $systemPath.replace(';;', ';')
}

[Environment]::SetEnvironmentVariable('Path', $systemPath, 'Machine');

write-host "Cleaned path!"
write-host $systemPath

Drazul

Posted 2012-02-08T19:27:24.020

Reputation: 101

0

if it is not required to keep system PATH and user PATH separate:

::setx /m truncate variable length to 1024 REG ADD 
REG ADD "HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Session Manager\Environment" /v PATH /t REG_SZ /f /d "%PATH%"
::empty local path, use system wide only, else it will enlarge with every setx /m
setx PATH ""
::setx is dummy but propagate system wide variables with it
setx /m A A

fantastory

Posted 2012-02-08T19:27:24.020

Reputation: 101

1Can you explain a bit more about what you are suggesting here? – G-Man Says 'Reinstate Monica' – 2014-10-24T14:18:55.317

It is just a ready to use command to workaround setx 1024 character limit. Example is shown directly on PATH variable. Although the previous answers are helpful they lack a final solution. – fantastory – 2014-10-24T16:16:04.127