Answers for "install mysql powershell"

SQL
1

install mysql powershell

# Open Powershell as administrator
# First install Choclatey
Set-ExecutionPolicy Bypass -Scope Process -Force; [System.Net.ServicePointManager]::SecurityProtocol = [System.Net.ServicePointManager]::SecurityProtocol -bor 3072; iex ((New-Object System.Net.WebClient).DownloadString('https://chocolatey.org/install.ps1'))
# Check if choco installed
choco -?
# Install mysql
choco install mysql
Posted by: Guest on July-19-2021
1

how to install to mysql server in powershell

first install chocolatey
open Powershell as administrator
C:\\User\hey> choco install mysql
Posted by: Guest on November-17-2020

Code answers related to "SQL"

Browse Popular Code Answers by Language