最近一段时间,使用WIFI无线联网的Windows 10或者Windows 11系统的设备,可能会出现明明连着网,但是右下角一直显示地球样子的无网络链接。

修复方法

 

第一种,新建一个记事本,把后缀改为.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]

 

第二种,shell运行

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