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 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

Categories
News Technical

Windows Azure Infrastructure Services Poster

Check out the updated poster depicting the common use scenarios for Windows Azure Infrastructure Services Today. You can also download this poster via the link provided below. Download the PDF Here

Categories
How-To Technical

Remove Windows Service

By executing the following command you can remove a windows service: C:> sc delete [service name] TIP:  If you don’t know the service name you’re trying to delete, you can find it by going to Start>Run>services.msc and locate the service name in the service’s property page.   Attn:  No screenshots were harmed in forming this […]