Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save juanonsoftware/20c8a1985cd906d625e948dfb696180b to your computer and use it in GitHub Desktop.
Save juanonsoftware/20c8a1985cd906d625e948dfb696180b to your computer and use it in GitHub Desktop.
Powershell script to install SQL Server 2014 and SQL Server Studio Management via Chocolatey
Set-ExecutionPolicy Bypass -Scope Process -Force; iex ((New-Object System.Net.WebClient).DownloadString('https://chocolatey.org/install.ps1'))
# Install SQL Server 2014 Management Studio
choco install mssqlservermanagementstudio2014express -y --version 12.2.5000.20170905
# Install SQL Server 2014
choco install mssqlserver2014express -y --version 12.2.5000.20170905
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment