Last active
January 22, 2016 16:54
-
-
Save ThatWilsonNerd/c7eb198d93f732a68844 to your computer and use it in GitHub Desktop.
Query for Dynamics CRM License Keys
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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