最近很多新手在安装Visual Studio 2022时出现了下载速度为0,多次尝试后失败等问题
这通常是因为短链接aka.ms被解析到了错误的IP地址,你使用的当地DNS可能遭到污染。
可以百度站长工具ip地址查询,输入aka.ms,将查询到的IP地址写入C:\Windows\System32\drivers\etc\hosts,格式为“ip地址 aka.ms”,然后ipconfig /flushdns刷新DNS缓存
也可以将本机的DNS修改为114.114.114.114或223.5.5.5。
如果你不会以上操作,我写了一个bat帮你自动完成
@璐村惂鐢ㄦ埛_000076K馃惥 off
net session > nul 2>&1
if %errorlevel% NEQ 0 (
echo 必须以管理员身份运行此脚本。
pause
exit
)
echo 查询aka.ms的DNS解析结果...
for /f "tokens=*" %%f in ('nslookup aka.ms 114.114.114.114') do set lastLine=%%f
for %%f in (%lastLine%) do set ipaddr=%%f
echo %ipaddr% aka.ms
choice /c yn /m "要将以上记录添加到hosts中吗"
if %errorlevel%==2 exit
set hosts="C:\Windows\System32\drivers\etc\hosts"
echo.>>%hosts%
echo %ipaddr% aka.ms>>%hosts%
echo 已添加到hosts。
ipconfig /flushdns
choice /c yn /m "要检查当前hosts内容吗"
if %errorlevel%==2 exit
type %hosts%
pause
将以上代码另存为bat文件,并以管理员身份运行即可
这通常是因为短链接aka.ms被解析到了错误的IP地址,你使用的当地DNS可能遭到污染。
可以百度站长工具ip地址查询,输入aka.ms,将查询到的IP地址写入C:\Windows\System32\drivers\etc\hosts,格式为“ip地址 aka.ms”,然后ipconfig /flushdns刷新DNS缓存
也可以将本机的DNS修改为114.114.114.114或223.5.5.5。
如果你不会以上操作,我写了一个bat帮你自动完成
@璐村惂鐢ㄦ埛_000076K馃惥 off
net session > nul 2>&1
if %errorlevel% NEQ 0 (
echo 必须以管理员身份运行此脚本。
pause
exit
)
echo 查询aka.ms的DNS解析结果...
for /f "tokens=*" %%f in ('nslookup aka.ms 114.114.114.114') do set lastLine=%%f
for %%f in (%lastLine%) do set ipaddr=%%f
echo %ipaddr% aka.ms
choice /c yn /m "要将以上记录添加到hosts中吗"
if %errorlevel%==2 exit
set hosts="C:\Windows\System32\drivers\etc\hosts"
echo.>>%hosts%
echo %ipaddr% aka.ms>>%hosts%
echo 已添加到hosts。
ipconfig /flushdns
choice /c yn /m "要检查当前hosts内容吗"
if %errorlevel%==2 exit
type %hosts%
pause
将以上代码另存为bat文件,并以管理员身份运行即可