I have an installation code which checks the version of the SQL Server installed by reading the version number from the registry key
SOFTWARE\Microsoft\MSSQLServer\MSSQLServer\CurrentVersion
-> current version.
I installed SQL Server 2012 Express and this key does not exist.
SQL Server 2012 (non-express) does have this key.
Before I go and change my code to actually run a query to get the version - is there some other registry key which holds the express version number?
Thank you.