首页 > 其他 > 详细

environment variable is too large 2047

时间:2019-03-06 18:23:33      阅读:364      评论:0      收藏:0      [点我收藏+]

技术分享图片

https://stackoverflow.com/questions/34491244/environment-variable-is-too-large-on-windows-10

方案1

When PATH variable gets overloaded with too many values it reaches a point where you cannot add values anymore. Trying the following should solve your problem.

Solution 1:

  1. Create a new system variable say ‘NEWPATH‘
  2. Assign the bin directory location to ‘NEWPATH‘
  3. Now append ‘; %NEWPATH%‘ to the PATH variable

If this still doesn‘t work then try to copy some part of PATH variable already existing values to the ‘NEWPATH‘ and then append the ‘NEWPATH‘

Solution 2:

Check the value of PATH variable if you can group and shorten the paths. For example,

C:\Program Files\Microsoft SQL Server\102\Tools\Binn\;C:\Program Files\Microsoft SQL Server\102\DTS\Bin\;

can be combined to

C:\Program Files\Microsoft SQL Server;

In this way you can build more space into your fixed length PATH variable and finally adjust your bin directory location into PATH.

Hope this helps you!

 

方案2

There are few ways to clean up your path variable. The easiest is to use Rapid Environment Editor. This free utility will,

  1. Remove the duplicate paths (right click > Cleanup Paths)
  2. Remove non-existent folders (shown in red which you need to manually delete)
  3. Replace long paths with short paths (right click > long to short path).

I do above steps in order and use 3rd step only for longest paths until Path variable size is in control again.

If you want to go more advanced, here‘s little C# tool that you can modify to whatever other logic you want to implement

environment variable is too large 2047

原文:https://www.cnblogs.com/chucklu/p/10485014.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!