Skype for Business Server 2019 Cumulative Update List: October 2023

The latest updates for Skype for Business Server 2019 and how to update each server role is described here: Updates for Skype for Business Server 2019 Download the latest Cumulative Update for Skype for Business Server 2019 Here is the Cumulative Updates List for Skype for Business Server 2019. Version Cumulative Update KB Article 7.0.2046.530 October 2023 … Continue reading Skype for Business Server 2019 Cumulative Update List: October 2023

SfB Server Component Version using Get-CsServerPatchVersion

The recent November 2015 Cumulative Update for Skype for Business Server 2015 added the Get-CsServerPatchVersion to the available PowerShell cmdlets. This new PowerShell cmdlet replaces the previous methods (Windows Registry and WMI Classes). To get the Skype4B Server Component Version: Skype for Business Server 2015 Component Version using PowerShell We need to make sure that … Continue reading SfB Server Component Version using Get-CsServerPatchVersion

Lync/SfB Server: Windows/Service Fabric version List

Update 2020/12/21 - New PowerShell cmdlet to include Service Fabric in Skype for Business Server 2019. In a previous post related to checking the Lync/Skype for Business Server component version, we forgot to mention about Windows/Service Fabric: Lync Server Component Version using PowerShell (Windows Registry) Skype for Business Server 2015 Component Version using PowerShell When … Continue reading Lync/SfB Server: Windows/Service Fabric version List

Skype for Business Server 2015 Cumulative Update List: October 2023

With the first release of an update for Skype for Business Server 2015, it is a good opportunity to publish a list of Cumulative Updates. We will try to keep it updated as soon as a new Cumulative Update is released. Like in the previous versions, this list will include the version for the Core … Continue reading Skype for Business Server 2015 Cumulative Update List: October 2023

Skype for Business Server 2015 Component Version using PowerShell

There are two methods to get the Skype for Business Server component version: using Windows Registry or the WMI Classes. Both methods were previously published for Lync Server 2010 and Lync Server 2013: Lync Server Component Version using PowerShell (Windows Registry) Lync Server Component Version using PowerShell (WMI Classes) The preferred method is using the … Continue reading Skype for Business Server 2015 Component Version using PowerShell

Lync Server Component Version using PowerShell (Windows Registry)

One of the first posts was about how to get Lync Server Component versions: Lync Server Component Version with PowerShell (WMI Classes) In that post, we used Get-WmiObject to query the server. Nevertheless, using that method can be slow, and for sometime it was the only one we knew. In the post Hey, Scripting Guy! Blog … Continue reading Lync Server Component Version using PowerShell (Windows Registry)

Lync Server 2013 Cumulative Update List: July 2022

Since we already have a Lync Server 2010 Cumulative Update List it makes sense to have the same for Lync Server 2013. We can use the PowerShell cmdlet described in Lync Server Component Version to know which version is installed. After running Lync Server Update package, not all components will be updated to the latest version – this is a … Continue reading Lync Server 2013 Cumulative Update List: July 2022

Lync Server 2010 Cumulative Update List: June 2019

In a previous article we discussed how to check Lync Server Component Version. After checking the versions, a good thing is a table to verify what Cumulative Update were installed in the server. We can use the Lync Server Core Component as reference, since this component is always updated. When we update Lync Server, not all components … Continue reading Lync Server 2010 Cumulative Update List: June 2019

Lync Server Component Version using PowerShell (WMI Classes)

Every Lync Server administrator must have this PowerShell cmdlet, which shows each Lync Server 2010/2013 Component's version: Get-WmiObject -class Win32_Product | where {$_.name -like "*Lync Server*"} | Sort-Object Name | Select Name, Version |ft -AutoSize The result will be like this: Or in Lync Server 2010: To save the result in a file just add … Continue reading Lync Server Component Version using PowerShell (WMI Classes)