How to Check if the MS SQL Server Licenses are Valid

Ftr1

I have SQL Server installed, but I’m not sure what license was installed. Is there an easy way to find this out? You can using SSMS SQL Management Studio to find it. SELECT SERVERPROPERTY('LicenseType') as Licensetype, SERVERPROPERTY('NumLicenses') as LicenseNumber, SERVERPROPERTY('productversion')…