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