| Server IP : 127.0.0.1 / Your IP : 216.73.216.48 Web Server : Apache/2.4.58 (Win64) OpenSSL/3.1.3 PHP/8.2.12 System : Windows NT DESKTOP-3H4FHQJ 10.0 build 19045 (Windows 10) AMD64 User : win 10 ( 0) PHP Version : 8.2.12 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : D:/xamppkk/ |
Upload File : |
@echo off rem START or STOP Services rem ---------------------------------- rem Check if argument is STOP or START if not ""%1"" == ""START"" goto stop if exist D:\xampp\hypersonic\scripts\ctl.bat (start /MIN /B D:\xampp\server\hsql-sample-database\scripts\ctl.bat START) if exist D:\xampp\ingres\scripts\ctl.bat (start /MIN /B D:\xampp\ingres\scripts\ctl.bat START) if exist D:\xampp\mysql\scripts\ctl.bat (start /MIN /B D:\xampp\mysql\scripts\ctl.bat START) if exist D:\xampp\postgresql\scripts\ctl.bat (start /MIN /B D:\xampp\postgresql\scripts\ctl.bat START) if exist D:\xampp\apache\scripts\ctl.bat (start /MIN /B D:\xampp\apache\scripts\ctl.bat START) if exist D:\xampp\openoffice\scripts\ctl.bat (start /MIN /B D:\xampp\openoffice\scripts\ctl.bat START) if exist D:\xampp\apache-tomcat\scripts\ctl.bat (start /MIN /B D:\xampp\apache-tomcat\scripts\ctl.bat START) if exist D:\xampp\resin\scripts\ctl.bat (start /MIN /B D:\xampp\resin\scripts\ctl.bat START) if exist D:\xampp\jetty\scripts\ctl.bat (start /MIN /B D:\xampp\jetty\scripts\ctl.bat START) if exist D:\xampp\subversion\scripts\ctl.bat (start /MIN /B D:\xampp\subversion\scripts\ctl.bat START) rem RUBY_APPLICATION_START if exist D:\xampp\lucene\scripts\ctl.bat (start /MIN /B D:\xampp\lucene\scripts\ctl.bat START) if exist D:\xampp\third_application\scripts\ctl.bat (start /MIN /B D:\xampp\third_application\scripts\ctl.bat START) goto end :stop echo "Stopping services ..." if exist D:\xampp\third_application\scripts\ctl.bat (start /MIN /B D:\xampp\third_application\scripts\ctl.bat STOP) if exist D:\xampp\lucene\scripts\ctl.bat (start /MIN /B D:\xampp\lucene\scripts\ctl.bat STOP) rem RUBY_APPLICATION_STOP if exist D:\xampp\subversion\scripts\ctl.bat (start /MIN /B D:\xampp\subversion\scripts\ctl.bat STOP) if exist D:\xampp\jetty\scripts\ctl.bat (start /MIN /B D:\xampp\jetty\scripts\ctl.bat STOP) if exist D:\xampp\hypersonic\scripts\ctl.bat (start /MIN /B D:\xampp\server\hsql-sample-database\scripts\ctl.bat STOP) if exist D:\xampp\resin\scripts\ctl.bat (start /MIN /B D:\xampp\resin\scripts\ctl.bat STOP) if exist D:\xampp\apache-tomcat\scripts\ctl.bat (start /MIN /B /WAIT D:\xampp\apache-tomcat\scripts\ctl.bat STOP) if exist D:\xampp\openoffice\scripts\ctl.bat (start /MIN /B D:\xampp\openoffice\scripts\ctl.bat STOP) if exist D:\xampp\apache\scripts\ctl.bat (start /MIN /B D:\xampp\apache\scripts\ctl.bat STOP) if exist D:\xampp\ingres\scripts\ctl.bat (start /MIN /B D:\xampp\ingres\scripts\ctl.bat STOP) if exist D:\xampp\mysql\scripts\ctl.bat (start /MIN /B D:\xampp\mysql\scripts\ctl.bat STOP) if exist D:\xampp\postgresql\scripts\ctl.bat (start /MIN /B D:\xampp\postgresql\scripts\ctl.bat STOP) :end