Answers for "mysql with 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

Code answers related to "mysql with powershell"

Code answers related to "SQL"

Browse Popular Code Answers by Language