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: CsWindowsService
A quick task on the Lync server where I needed to list running services. Indeed I could do this in the services panel using services.msc but this time I wanted to play in powershell. By typing the following I could list all running services that pertains to Lync Get-CsWindowsService | Where-Object {$_.Status -eq “Running”} ref: https://technet.microsoft.com/en-us/library/gg398803.aspx