1 2 3 4 5 6 7 8 |
# Crear un servicio New-Service -Name "Tes2" -BinaryPathName '"C:\Program Files\MySQL\MySQL Server 5.1\bin\mysqld" --defaults-file="C:\Program Files\MySQL\MySQL Server 5.1\my.ini" MySQL' # Arrancar un servicio Start-Service tes2 # Parar un servicio Stop-Service tes2 |