Skip to content

Instantly share code, notes, and snippets.

@JohnLBevan
Last active August 29, 2015 14:07
Show Gist options
  • Save JohnLBevan/a706bd92089c68293c04 to your computer and use it in GitHub Desktop.
Save JohnLBevan/a706bd92089c68293c04 to your computer and use it in GitHub Desktop.
Get Installed SQL Version
#NB: replace "." with instance name (e.g. ".\sqlexpress" or "axlive\sql06")
[System.Reflection.Assembly]::LoadWithPartialName("Microsoft.SqlServer.SMO") | Out-Null
New-Object -typeName Microsoft.SqlServer.Management.Smo.Server(".") | select edition, version
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment