Skip to content

Instantly share code, notes, and snippets.

@ThatWilsonNerd
Last active January 22, 2016 16:54
Show Gist options
  • Save ThatWilsonNerd/c7eb198d93f732a68844 to your computer and use it in GitHub Desktop.
Save ThatWilsonNerd/c7eb198d93f732a68844 to your computer and use it in GitHub Desktop.
Query for Dynamics CRM License Keys
USE MSCRM_CONFIG
GO
-- Dynamics CRM 2015
SELECT NvarCharColumn AS CRM2015LicenseKey
FROM ConfigSettingsProperties
WHERE ColumnName = 'LicenseKeyV7RTM'
-- Dynamics CRM 2013
SELECT NvarCharColumn AS CRM2013LicenseKey
FROM ConfigSettingsProperties
WHERE ColumnName = 'LicenseKeyV6RTM'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment