home *** CD-ROM | disk | FTP | other *** search
/ Enter 2004 June / ENTER.ISO / files / xampp-win32-1.4.5-installer.exe / xampp / apache_installservice.bat < prev    next >
Encoding:
DOS Batch File  |  2003-09-03  |  298 b   |  17 lines

  1. @echo off
  2.  
  3. if "%OS%" == "Windows_NT" goto WinNT
  4.  
  5. :Win9X
  6. echo Don't be stupid! Win9x don't know Services
  7. echo Please use apache_start.bat instead
  8. goto exit
  9.  
  10. :WinNT
  11. echo Installing Apache2 as an Service
  12. bin\apache -k install
  13. echo Now we Start Apache2 :)
  14. net start Apache2
  15.  
  16. :exit
  17. pause