欢迎各位兄弟 发布技术文章

这里的技术是共享的

You are here

自己亲自做的windows 的 重置网络 bat 文件使用GB2312的编码 有大用 有大大用 有大大大用


reset_net.bat


@echo off
echo 正在设置网络接口...
rem 遍历所有网络接口
for /f "tokens=5" %%a in ('netsh interface ipv4 show interfaces') do (
set "interface=%%a"
setlocal enabledelayedexpansion
echo !interface!
rem 设置接口为自动获取IP地址
netsh interface ipv4 set address "!interface!" dhcp
netsh interface ipv4 set dns  "!interface!" dhcp
netsh interface  set interface   "!interface!" admin=disable
timeout /t 5  
netsh interface  set interface   "!interface!" admin=enable
endlocal
)
echo 设置完成!
netsh winsock  reset
netsh int ip  reset  c:/catalog.txt    
netsh winhttp  reset  proxy      
netsh advfirewall reset  
ipconfig /flushdns      
ipconfig /release
ipconfig /renew  







普通分类: