批量ping远程条件

时间:2014-06-02 07:35:31

标签: windows batch-file ping

我需要一个Windows批处理脚本 1.Ping远程计算机,      如果远程计算机在线      net use x:\ xxx.xxx.xxx.xxx \ remote      robocopy x c:\ remote \      如果远程离线 30分钟或一小时后再试一次

1 个答案:

答案 0 :(得分:0)

:start
ping xxx.xxx.xxx.xxx -n 3 | findstr "TTL" && call :action
ping localhost -n 1800
goto start

:action
net use x: 
robocopy/xcopy whatever
exit