home *** CD-ROM | disk | FTP | other *** search
/ PC Professionell 2004 December / PCpro_2004_12.ISO / files / webserver / xampp / xampp-tomcat-addon-1.4.9-installer.exe / tomcat_service_uninstall.bat < prev    next >
Encoding:
DOS Batch File  |  2004-07-06  |  349 b   |  19 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.  
  12. echo Are you sure you wan't this?
  13. echo now stopping Tomcat when it runs
  14. net stop Tomcat5
  15. echo Time to say good bye to Tomcat :(
  16. service.bat remove Tomcat5
  17.  
  18. :exit
  19. pause