Contents tagged with version
-
How to Check Powershell Version
https://adamtheautomator.com/check-powershell-version/ more
-
How to get version of SharePoint installed
https://stackoverflow.com/questions/20511590/how-to-get-version-of-sharepoint-installed
-
Check Installed SMB Versions Using Powershell
From a powershell prompt type:
sc.exe qc lanmanworkstation
-
SQL Server Get Product Version and CPU Cores
SELECT @@SERVERNAME AS SQLServerName, CASE SUBSTRING(CONVERT(NVARCHAR(20),SERVERPROPERTY('ProductVersion')),1,4) WHEN '15.0' THEN 'SQL Server 2019' WHEN '14.0' THEN 'SQL Server 2017' WHEN '13.0' … more