Skip to content

Instantly share code, notes, and snippets.

@jibinpb
Created April 27, 2020 08:41
Show Gist options
  • Save jibinpb/fdd07f9551ccadf2ac08b142c6565471 to your computer and use it in GitHub Desktop.
Save jibinpb/fdd07f9551ccadf2ac08b142c6565471 to your computer and use it in GitHub Desktop.
SQL Server Management Studio Download via PowerShell
[Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12
# SQL Server Management Studio (SSMS)
$url = "https://download.microsoft.com/download/f/e/b/feb0e6be-21ce-4f98-abee-d74065e32d0a/SSMS-Setup-ENU.exe"
$output = "SSMS-Setup-ENU.exe"
Invoke-WebRequest -Uri $url -OutFile $output
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment