加入收藏 | 设为首页 | 会员中心 | 我要投稿 李大同 (https://www.lidatong.com.cn/)- 科技、建站、经验、云计算、5G、大数据,站长网!
当前位置: 首页 > 综合聚焦 > 服务器 > Windows > 正文

environment variable is too large 2047

发布时间:2020-12-14 02:29:53 所属栏目:Windows 来源:网络整理
导读: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

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 FilesMicrosoft SQL Server102ToolsBinn;C:Program FilesMicrosoft SQL Server102DTSBin;

can be combined to

C:Program FilesMicrosoft 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

(编辑:李大同)

【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容!

    推荐文章
      热点阅读