[ Mini Kiebo ]
Server: Windows NT DESKTOP-5B8S0D4 6.2 build 9200 (Windows 8 Professional Edition) i586
Path:
D:
/
0xampp
/
mysql
/
scripts
/
[
Home
]
File: ctl.bat
@echo off rem START or STOP Services rem ---------------------------------- rem Check if argument is STOP or START if not ""%1"" == ""START"" goto stop "D:\xampp\mysql\bin\mysqld" --defaults-file="D:\xampp\mysql\bin\my.ini" --standalone if errorlevel 1 goto error goto finish :stop cmd.exe /C start "" /MIN call "D:\xampp\killprocess.bat" "mysqld.exe" if not exist "D:\xampp\mysql\data\%computername%.pid" goto finish echo Delete %computername%.pid ... del "D:\xampp\mysql\data\%computername%.pid" goto finish :error echo MySQL could not be started :finish exit