【Win10】能正常上网联网但网络图标不显示提示无法连接到Internet

Ronchy2000 2024-10-17 16:07:01 阅读 97

问题描述:

正常的联网图标:

不正常的联网图标:

如果你能正常使用网络,但是这个图标显示不正常。请查看以下解决方法。

以下二位博主写的很清楚了。

Refencence:

解决Win10正常上网但图标提示无法连接到Internet的问题_win10能上网但是图标显示无连接-CSDN博客win10电脑能上网但是图标显示未连接到网络的解决方法_win10能上网但是网络显示未连接-CSDN博客

基于上述。我写了个傻瓜式的bat,可以GitHub自取。

GitHub - Ronchy2000/Windows-Network-Icon-Fix: 解决windows联网图标不显示的问题,通过修改注册表。

您也可以自己动手:

方法:新建文本文档,后缀命名为bat,右键管理员直接运行即可。

<code>@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=disablecode>

if %errorlevel% neq 0 (

echo 您需要手动禁用网卡并重启网卡。

pause >nul

exit /b

)

netsh interface set interface name="以太网" admin=enablecode>

echo 完成!按任意键退出

pause >nul



声明

本文内容仅代表作者观点,或转载于其他网站,本站不以此文作为商业用途
如有涉及侵权,请联系本站进行删除
转载本站原创文章,请注明来源及作者。