admin管理员组

文章数量:1565352

项目场景:

记录一次系统向BUG的网络错误


问题描述

故障现象:网络图标出现小地球,但可以正常上网,不过会时不时出现断开链接的情况


原因分析:

原因:微软改变了系统里网络反馈的服务器,结果又得不到正确的反馈,所以判断网络没有网


解决方案:

要解决这个问题,需要修改注册表中的网络反馈服务器的项,如果嫌麻烦,可以把以下的命令写成注册表脚本

方法:将以下内容粘贴到txt文本里面,然后将后缀改成.reg,运行即可

    Windows Registry Editor Version 5.00

[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\NlaSvc\Parameters\Internet]
"ActiveDnsProbeContent"="131.107.255.255"
"ActiveDnsProbeContentV6"="fd3e:4f5a:5b81::1"
"ActiveDnsProbeHost"="dns.msftncsi"
"ActiveDnsProbeHostV6"="dns.msftncsi"
"ActiveWebProbeContent"="Microsoft NCSI"
"ActiveWebProbeContentV6"="Microsoft NCSI"
"ActiveWebProbeHost"="www.msftncsi"
"ActiveWebProbeHostV6"="ipv6.msftncsi"
"ActiveWebProbePath"="ncsi.txt"
"ActiveWebProbePathV6"="ncsi.txt"
"CaptivePortalTimer"=dword:00000000
"CaptivePortalTimerBackOffIncrementsInSeconds"=dword:00000005
"CaptivePortalTimerMaxInSeconds"=dword:0000001e
"EnableActiveProbing"=dword:00000001
"PassivePollPeriod"=dword:0000000f
"StaleThreshold"=dword:0000001e
"WebTimeout"=dword:00000023

[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\NlaSvc\Parameters\Internet\ManualProxies]

本文标签: 解决方法图标地球网络