Files
GseTDDUebungKCLR/database/apache/apache_installservice.bat
Riley Schneider b732d8d4b5 Initial Commit
2025-12-03 16:38:10 +01:00

18 lines
288 B
Batchfile

@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