Mysqld 프로세서 실시간 감시
net start > netstart.txt
라고하면 서비스 실행중인 프로그램명이 netstart.txt 에 저장된다.
netstart.txt 안에 APM_MYSQL5 라는 단어가 들어가 있는지의 여부를 판단하여,
단어가 들어가 있으면 통과,
단어가 없으면
net start apm_mysql5
를 실행하면 서비스가 실행된다.
AutoHotkey예제.
loop
{
sleep, 10000
run, net start > netstart.txt
ifnotstring, a, APM_MYSQL5
{
net start apm_mysql5
}
}