【win】批处理bat重启所有网络
复制代码保存到bat文件中,右键管理员模式运行
chcp 65001
@echo off
echo 正在重启所有网络接口,请稍候...
for /f "tokens=4 delims= " %%a in ('netsh interface show interface') do (
netsh interface set interface "%%a" admin=disable
echo %%a
)
timeout /t 5
for /f "tokens=4 delims= " %%a in ('netsh interface show interface') do (
netsh interface set interface "%%a" admin=enable
)
echo 所有网络接口已重启完成。
pause
页:
[1]