Categories
How-To Technical

Tech Short: Stop and Start Lync Services On A Server

How can I take on this task, let me count the ways… After installing a new certificate on our Lync server I needed to restart the services to complete the change.  I was able to do this with two powershell commands. Stop Services Get-CsWindowsService | Where-Object {$_.Status -eq “Running”} | Stop-CsWindowsService Start Services Get-CsWindowsService | […]

Categories
How-To Software Technical

Tech Short: What is my Lync 2010 Server Version?

So you are looking to upgrade; or at best update to a CU and well the first question in your mind is; what version of Lync am I running. This info can be obtained by the Lync Server Management Shell   Run the following command: Get-CsServerVersion and you now have your server version As always, […]