高效运维 远程网络

脚本

@echo off

:begin
ping baidu.com > ping.txt
if %ERRORLEVEL% == 1 goto reboot
goto loop

:reboot
echo %date% %time% "net close...."
netsh interface set interface wlan0 disabled
echo %date% %time% "net start...."
netsh interface set interface wlan0 enabled
echo %date% %time% "net reboot..."

:loop
timeout /T 15 /NOBREAK
goto begin

新建ops用户

必须指定为管理员不然无法执行任务计划

 

 

修改网络适配器

名称改为英文(wlan0)方便bat执行

 

设置任务计划程序

 

 

操作设置

 

查看状态

 

你可能感兴趣的:(高效运维 远程网络)