wtorek, 20 kwietnia 2010

Detekcja monitora serwera Apache

Prosta funkcja detekcji uruchomionego Monitora serwera Apache

function BOOL DetectApacheMonitor( bLog )
BOOL bResult;
begin
    bResult = FALSE;
    if (ProcessRunning("ApacheMonitor.exe") || ProcessRunning("ApacheMonitor")) then       
        bResult = TRUE;
    endif;
   
    if (bResult) then
        if (bLog) then WriteLog(1,"- Apache Service Monitor uruchomiony"); endif;
    else
        if (bLog) then WriteLog(1,"- Apache Service Monitor uruchomiony"); endif;
    endif;   
       
    return bResult;
end;

Brak komentarzy:

Prześlij komentarz