Skip to content

Instantly share code, notes, and snippets.

@nanoDBA
Last active January 4, 2019 11:21
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 nanoDBA/b6d501307504b58f633bdc57d6348491 to your computer and use it in GitHub Desktop.
Save nanoDBA/b6d501307504b58f633bdc57d6348491 to your computer and use it in GitHub Desktop.
SSMS latest version - download and install using PowerShell
<# download and install latest SSMS release #>
$SSMS_filename = "$env:USERPROFILE\downloads\SSMS-Setup-ENU-" + ([string](Get-Date -format "yyyy-MM-dd")) + ".exe" ;
Start-BitsTransfer -Source 'https://aka.ms/ssmsfullsetup' -Destination $SSMS_filename;
& $SSMS_filename /install /passive
<# Thanks to @sqltoolsguy and his team for creating the aka.ms links!
https://twitter.com/sqltoolsguy/status/1011754064516804608 #>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment