网络断连具体表现
有网络,但任务栏显示地球图标。
无线网络自动断开,手动连接后不定时再次断开,循环出现。
网络检测原理
连接后 -> 发送请求到微软服务器 -> 系统收到服务器返回值
(如果系统能请求到微软服务器,系统就显示网络已连接,请求不到就是网络未连接;如果微软服务器出问题或者其他原因访问不了,请求不到,但你的网络又是正常的,那就会出现这种网络断连情况)
解决办法
更换验证服务器地址、返回值验证类型,使其能被正常访问
方法1:
修改前一定要备份注册表!如果出现相关问题直接恢复即可。
复制下列代码,然后新建txt文件,粘贴上去,保存,然后把后缀 ‘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.com
ActiveDnsProbeHostV6=dns.msftncsi.com
ActiveWebProbeContent=Microsoft NCSI
ActiveWebProbeContentV6=Microsoft NCSI
ActiveWebProbeHost=www.msftncsi.com
ActiveWebProbeHostV6=ipv6.msftncsi.com
ActiveWebProbePath=ncsi.txt
ActiveWebProbePathV6=ncsi.txt
EnableActiveProbing=dword:00000001
PassivePollPeriod=dword:0000000f
StaleThreshold=dword:0000001e
WebTimeout=dword:00000023
[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\NlaSvc\Parameters\Internet\ManualProxies]
方法2:
管理员运行 Powershell 运行以下命令改到新的探测页面:
Set-ItemProperty -Path HKLM:\SYSTEM\CurrentControlSet\Services\NlaSvc\Parameters\Internet -Name ActiveWebProbeContent Microsoft NCSI
Set-ItemProperty -Path HKLM:\SYSTEM\CurrentControlSet\Services\NlaSvc\Parameters\Internet -Name ActiveWebProbeContentV6 Microsoft NCSI
Set-ItemProperty -Path HKLM:\SYSTEM\CurrentControlSet\Services\NlaSvc\Parameters\Internet -Name ActiveWebProbeHost www.msftncsi.com
Set-ItemProperty -Path HKLM:\SYSTEM\CurrentControlSet\Services\NlaSvc\Parameters\Internet -Name ActiveWebProbeHostV6 ipv6.msftncsi.com
Set-ItemProperty -Path HKLM:\SYSTEM\CurrentControlSet\Services\NlaSvc\Parameters\Internet -Name ActiveWebProbePath ncsi.txt
Set-ItemProperty -Path HKLM:\SYSTEM\CurrentControlSet\Services\NlaSvc\Parameters\Internet -Name ActiveWebProbePathV6 ncsi.txt
Get-ItemProperty -Path HKLM:\SYSTEM\CurrentControlSet\Services\NlaSvc\Parameters\Internet
若文章图片、下载链接等信息出错,请在评论区留言反馈,博主将第一时间更新!欢迎打赏!
评论