File "apache_installservice.bat"
Full path: E:/sites/Single15/tinmung2007/webroot/XAMMP/apache/apache_installservice.bat
File size: 305 B
MIME-type:
Charset: utf-8
@echo off
if "%OS%" == "Windows_NT" goto WinNT
:Win9X
echo Don't be stupid! Win9x don't know Services
echo Please use apache_start.bat instead
goto exit
:WinNT
echo Installing Apache2.4 as an Service
bin\httpd -k install
echo Now we Start Apache2.4 :)
net start Apache2.4
:exit
pause