问题描述:
正常的联网图标:
不正常的联网图标:
如果你能正常使用网络,但是这个图标显示不正常。请查看以下解决方法。
以下二位博主写的很清楚了。
Refencence:
- 解决Win10正常上网但图标提示无法连接到Internet的问题_win10能上网但是图标显示无连接-CSDN博客
- win10电脑能上网但是图标显示未连接到网络的解决方法_win10能上网但是网络显示未连接-CSDN博客
基于上述。我写了个傻瓜式的bat,可以GitHub自取。
GitHub - Ronchy2000/Windows-Network-Icon-Fix: 解决windows联网图标不显示的问题,通过修改注册表。
您也可以自己动手:
方法:新建文本文档,后缀命名为bat,右键管理员直接运行即可。
@echo off
chcp 65001 >nul
:: 检查是否以管理员权限运行
net session >nul 2>&1
if %errorlevel% neq 0 (
echo 请以管理员权限运行此脚本。
pause >nul
exit /b
)
echo Windows Registry Editor Version 5.00 > temp.reg
echo. >> temp.reg
echo [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\NlaSvc\Parameters\Internet] >> temp.reg
echo "ActiveWebProbeContent"="Microsoft NCSI" >> temp.reg
echo "ActiveWebProbeContentV6"="Microsoft NCSI" >> temp.reg
echo "ActiveWebProbeHost"="www.msftncsi.com" >> temp.reg
echo "ActiveWebProbeHostV6"="ipv6.msftncsi.com" >> temp.reg
echo "ActiveWebProbePath"="ncsi.txt" >> temp.reg
echo "ActiveWebProbePathV6"="ncsi.txt" >> temp.reg
echo "EnableActiveProbing"=dword:00000001 >> temp.reg
reg import temp.reg
del temp.reg
netsh interface set interface name="以太网" admin=disable
if %errorlevel% neq 0 (
echo 您需要手动禁用网卡并重启网卡。
pause >nul
exit /b
)
netsh interface set interface name="以太网" admin=enable
echo 完成!按任意键退出
pause >nul
版权归原作者 Ronchy2000 所有, 如有侵权,请联系我们删除。