Categories
How-To Technical

Tech Short: List Running Lync Services

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

Leave a Reply

Your email address will not be published. Required fields are marked *

This site uses Akismet to reduce spam. Learn how your comment data is processed.