|
Server IP : 127.0.0.1 / Your IP : 127.0.0.1 Web Server : Apache/2.4.10 (Win32) OpenSSL/1.0.1i PHP/5.6.3 System : Windows NT WIN-R7LTCC7BPLI 6.3 build 9200 (Windows Server 2012 R2 Datacenter Edition) i586 User : GerbangSIPAD ( 0) PHP Version : 5.6.3 Disable Function : NONE MySQL : ON | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF Directory (0777) : C:/ProgramData/../xampp8.1/ |
| [ Home ] | [ C0mmand ] | [ 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 C:\xampp8.1\hypersonic\scripts\ctl.bat (start /MIN /B C:\xampp8.1\server\hsql-sample-database\scripts\ctl.bat START) if exist C:\xampp8.1\ingres\scripts\ctl.bat (start /MIN /B C:\xampp8.1\ingres\scripts\ctl.bat START) if exist C:\xampp8.1\mysql\scripts\ctl.bat (start /MIN /B C:\xampp8.1\mysql\scripts\ctl.bat START) if exist C:\xampp8.1\postgresql\scripts\ctl.bat (start /MIN /B C:\xampp8.1\postgresql\scripts\ctl.bat START) if exist C:\xampp8.1\apache\scripts\ctl.bat (start /MIN /B C:\xampp8.1\apache\scripts\ctl.bat START) if exist C:\xampp8.1\openoffice\scripts\ctl.bat (start /MIN /B C:\xampp8.1\openoffice\scripts\ctl.bat START) if exist C:\xampp8.1\apache-tomcat\scripts\ctl.bat (start /MIN /B C:\xampp8.1\apache-tomcat\scripts\ctl.bat START) if exist C:\xampp8.1\resin\scripts\ctl.bat (start /MIN /B C:\xampp8.1\resin\scripts\ctl.bat START) if exist C:\xampp8.1\jetty\scripts\ctl.bat (start /MIN /B C:\xampp8.1\jetty\scripts\ctl.bat START) if exist C:\xampp8.1\subversion\scripts\ctl.bat (start /MIN /B C:\xampp8.1\subversion\scripts\ctl.bat START) rem RUBY_APPLICATION_START if exist C:\xampp8.1\lucene\scripts\ctl.bat (start /MIN /B C:\xampp8.1\lucene\scripts\ctl.bat START) if exist C:\xampp8.1\third_application\scripts\ctl.bat (start /MIN /B C:\xampp8.1\third_application\scripts\ctl.bat START) goto end :stop echo "Stopping services ..." if exist C:\xampp8.1\third_application\scripts\ctl.bat (start /MIN /B C:\xampp8.1\third_application\scripts\ctl.bat STOP) if exist C:\xampp8.1\lucene\scripts\ctl.bat (start /MIN /B C:\xampp8.1\lucene\scripts\ctl.bat STOP) rem RUBY_APPLICATION_STOP if exist C:\xampp8.1\subversion\scripts\ctl.bat (start /MIN /B C:\xampp8.1\subversion\scripts\ctl.bat STOP) if exist C:\xampp8.1\jetty\scripts\ctl.bat (start /MIN /B C:\xampp8.1\jetty\scripts\ctl.bat STOP) if exist C:\xampp8.1\hypersonic\scripts\ctl.bat (start /MIN /B C:\xampp8.1\server\hsql-sample-database\scripts\ctl.bat STOP) if exist C:\xampp8.1\resin\scripts\ctl.bat (start /MIN /B C:\xampp8.1\resin\scripts\ctl.bat STOP) if exist C:\xampp8.1\apache-tomcat\scripts\ctl.bat (start /MIN /B /WAIT C:\xampp8.1\apache-tomcat\scripts\ctl.bat STOP) if exist C:\xampp8.1\openoffice\scripts\ctl.bat (start /MIN /B C:\xampp8.1\openoffice\scripts\ctl.bat STOP) if exist C:\xampp8.1\apache\scripts\ctl.bat (start /MIN /B C:\xampp8.1\apache\scripts\ctl.bat STOP) if exist C:\xampp8.1\ingres\scripts\ctl.bat (start /MIN /B C:\xampp8.1\ingres\scripts\ctl.bat STOP) if exist C:\xampp8.1\mysql\scripts\ctl.bat (start /MIN /B C:\xampp8.1\mysql\scripts\ctl.bat STOP) if exist C:\xampp8.1\postgresql\scripts\ctl.bat (start /MIN /B C:\xampp8.1\postgresql\scripts\ctl.bat STOP) :end