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 | […]
Tag: Lync Server
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, […]