0
我需要一個在互聯網連接丟失時關閉程序的命令。 我已經爲啓動這個。當互聯網連接丟失時關閉程序
@Echo off
:Start
putty.exe -load "test"
ping -n 10 localhost
goto Start
謝謝。
我需要一個在互聯網連接丟失時關閉程序的命令。 我已經爲啓動這個。當互聯網連接丟失時關閉程序
@Echo off
:Start
putty.exe -load "test"
ping -n 10 localhost
goto Start
謝謝。
@echo off
rem start program
start calc.exe
:loop
rem test internet connection
ping -n 1 www.google.com | find "TTL="
if not errorlevel 1 goto loop
rem connection lost. kill.
taskkill /fi "imagename eq calc.exe"
start calc
:loop
ping -n 1 google.com >nul && goto:loop || taskkill /im calc.exe