WORK

(2019-06-14) 프로그램 자동실행 배치(.bat) 파일 만들기

Think Hub 2019. 6. 14. 15:46

@echo off

 

:repeat

Timeout /T 2

 

tasklist | find "KisAgent.exe"

IF %ErrorLevel%==1 goto 1

IF NOT %ErrorLevel%==1 goto 0

 

:0

goto repeat

 

:1

start KisAgent.exe

goto repeat