Skype for Business – Get QoS Configuration with PowerShell

When configuring QoS (Quality of Service) in Microsoft Lync / Skype for Business you need to modify the media port ranges for various Services and Configuration using PowerShell. Pat Richard has made a brilliant QoS calculator for Lync/Skype for Business Continue reading Skype for Business – Get QoS Configuration with PowerShell

SCOM / SCCM – Script install on DMZ or Workgroup Machine

This is a very rough and ready script to install Microsoft SCCM 2012 R2 and SCOM 2012 R2 on a non-domain joined Windows Server 2012 R2 (e.g. DMZ).  The script is provided “As is” so please test it thoroughly on Continue reading SCOM / SCCM – Script install on DMZ or Workgroup Machine

Skype for Business 2015 – Automated Backup Script

A few years ago I created a Lync 2013 backup script that would backup data from all servers in the Topology. Lync 2013 Automated Backup Script This script also works with Skype for Business 2015 but it specifically backed up Response Continue reading Skype for Business 2015 – Automated Backup Script

Hyper-V 2012 R2- Replica Email Notification Script

Here is an example Hyper-V replica email notification script. Scenario is Hyper-V cluster replicating business critical VMs to a single Hyper-V host.  The script can be ran as a scheduled task on the DR Hyper-V host to send email notifications. Continue reading Hyper-V 2012 R2- Replica Email Notification Script

Lync – Change queue overflow number with PowerShell Script

The scenario is you have created a Response Group (IVR) with an option to call an Out Of Hours engineer.  You configure a queue overflow to forward straight to a mobile telephone number outside of your organisation as follows: The Continue reading Lync – Change queue overflow number with PowerShell Script

Lync 2013 – Automated Backup Script

This script will backup Lync 2013 core data and settings off all servers in the topology as per Technet article: http://technet.microsoft.com/en-us/library/hh202170.aspx The script does the following: Backup the Central Management Store Backup the Location Information Service Data Backup the user Continue reading Lync 2013 – Automated Backup Script

How to Backup Lync Server 2010

It is important to backup your Lync environment so that you can restore service in the event of a disaster.  The following Microsoft TechNet articles explain how to backup Lync Server 2010: http://technet.microsoft.com/en-us/library/hh202170 http://technet.microsoft.com/en-us/library/hh202171 In this article I would just Continue reading How to Backup Lync Server 2010

Lync Tip: List Lync users with LineURI’s to CSV

Using the Get-CsUser cmdlet you can get information about Lync users in your organization. The below powershell command exports Lync users, sip address, Enterprise Voice Enabled and Line URI to a CSV file. Get-Csuser | Select-Object DisplayName, SipAddress, EnterpriseVoiceEnabled, LineUri | Continue reading Lync Tip: List Lync users with LineURI’s to CSV