blob: cfe2ce3b7963ee88437cb3afa1a4c998257185d9 (
plain) (
blame)
1
2
3
4
5
6
7
|
@echo off
:: this file installs the mariadb service
if not "%1"=="am_admin" (powershell start -verb runas '%0' am_admin & exit /b)
mysqld.exe --install "MySQL"
net start MySQL
|