File "ctl.bat"
Full path: E:/sites/Single15/tinmung2007/webroot/XAMMP/apache/scripts/ctl.bat
File size: 434 B
MIME-type:
Charset: utf-8
@echo off
if not ""%1"" == ""START"" goto stop
cmd.exe /C start /B /MIN "" "D:\XAMMP\apache\bin\httpd.exe"
if errorlevel 255 goto finish
if errorlevel 1 goto error
goto finish
:stop
cmd.exe /C start "" /MIN call "D:\XAMMP\killprocess.bat" "httpd.exe"
if not exist "D:\XAMMP\apache\logs\httpd.pid" GOTO finish
del "D:\XAMMP\apache\logs\httpd.pid"
goto finish
:error
echo Error starting Apache
:finish
exit