bat-ping通后启动某个程序
(2018-09-19 14:41:03)
标签:
ping |
分类: Bat |
@echo off
:ping
ping 192.168.160.151 && goto :1 || goto :2
exit
:1
cd c:\Program Files\Google\Chrome\Application
start Chrome.exe --kiosk
http://192.168.160.151:8012/HeZeBigScreenCall/index.html?_counseSerial=2
exit
:2
goto :ping