August 24th, 2017 | Tags:

Some time back I wrote up a blog post on some of the new IP Phone Policies introduced within Skype for Business Online. Since then IP Phone vendors have added additional “3PIP” functionality, one of which is Device Lock.

Device Lock has for some time been available within Lync Phone Edition devices, but more recently this is something which is not only certified by Microsoft but also supported within Skype for Business Online. Many IP Phone settings can be managed out of band via 3rd party provisioning servers, but if you’re registering the device directly and utilizing factory settings some of these parameters can be set via Skype for Business Online PowerShell.

So with Device Lock Microsoft has now exposed the Get-CsUCPhoneConfiguration cmdlet.

By default Device Lock is enabled, but this can be disabled by executing the following commands:

      • Open PowerShell, type $credential = Get-Credential
      • When prompted enter your tenant admin credentials
      • Leverage the credentials to connect to Online PowerShell by typing, $session = New-CsOnlineSession -Credential $credential
      • Import the Online Powershell session by typing, Import-PSSession $session
      • To retrieve current configuration type, Get-CsUCPhoneConfiguration (see output below)

      • To disable Device Lock, type Set-CsUCPhoneConfiguration -EnforcePhoneLock $false (see output below)
      • To retrieve updated settings type Get-CsUCPhoneConfiguration

    1. Note: it takes about 15mins for the new policy settings to take effect.
August 22nd, 2017 | Tags: ,

The event organizers at UC Day reached out to me and kindly asked whether I would be interested in flying back over to Blighty and speaking at their epic day long UC extravaganza, of course I jumped at the chance – even when I found out it was up north 😉

For those of you that can make it I thoroughly recommend you register for this superb free industry event. I’d also encourage you to attend the legendary pub quiz the night before.

To find out more about the event and register now, head over to http://www.ucday.co.uk/

June 7th, 2017 | Tags:

Hi All,

For those that haven’t already noticed Microsoft’s Skype for Business Tech Community Blog has announced a second  Skype for Business Online Broadcast on video interop – now that it’s officially GA within NA and close to being launched in EMEA.

I must have behaved the first time around as they’ve asked me back 🙂 Hopefully some of you can make it!

More information here

Update: this video is now posted on YouTube

May 5th, 2017 | Tags: ,

The Microsoft folks that create some awesome Skype for Business training kindly asked that I collaborate with them on updated RealConnect for Office 365 training. This was recently shared via a blog post and the video that @Korneel Bullens and I produced is embedded below.

March 1st, 2017 | Tags: , ,

Almost a year ago Polycom and Microsoft jointly announced at Enterprise Connect a new cloud video interoperability service – RealConnect for Office 365.

Following this announcement I wrote a post that covered this in more details and talked about this on Microsoft’s Skype for Business broadcast vlog.

We’re now in preview within the US and I wanted to give folks an overview of the provisioning flow, it’s still not the final design – in the future the provisioning app will be embedded within a native Office Store Web App and this has minimal branding. Nevertheless it answers a lot of questions around security and how much effort it takes to get the service deployed – the video is live and it’s 8mins! (including commentary)

February 28th, 2017 | Tags: , ,

As many of you are no doubt already aware Skype for Business on-premises provides a mechanism for users to easily sign into IP telephony devices, this process is referred to as PIN authentication. It provides end-users with an easy way to authenticate with Skype for Business without the need to input a full username and password on the phone. Of course, if the phone is paired with your desktop PC via “Better Together” functionality this makes things easier, but given that 3rd party interoperability program or (3PIP) devices require additional software for network-based pairing – this often isn’t deployed.

Now let’s level set on a few limitations to be aware of with PIN-based authentication:

1. As an IT admin DHCP options needs to be configured appropriately, specifically option 43. This lets the phone know the location for the certification provisioning service, this then in turn facilitates a secure TLS channel between the phone and the Skype for Business server. Once the authentication is completed the phone retrieves a client certificate which facilitates access to various services, this process is referred to as “TLS-DSK”. This private certificate provisioning service isn’t published externally, so remote workers need to use the process previously mentioned, “Better Together”.

Note: Polycom VVX phones can be configured to work in absence of deploying this option (provided Internet time is configured and available), refer to the parameter dhcp.option43.override.stsUri documented within the UCS Lync and Skype for Business Deployment Guide.

For more information on Option 43, I’d recommend you refer to this post by Jeff Schertz.

2. Given that PIN authentication grants the phone access to Skype for Business services this does not help with Microsoft Exchange, for this NTLM sign-in is still required. Once complete calendaring details can be populated – this is important if you want to perform Skype for Business “Click-to-Join” from the phone’s calendar.

So now let’s talk about Skype for Business Online Web Sign-In, this is a new (heavily understated) feature that allows users with Skype for Business Online accounts to sign into their phone with minimal phone intervention or the need for the 3PIP Better Together AKA the “Better Together-over-Ethernet” companion application.

Let’s first walk you through the process and then we’ll examine how it works.

Step 1: We select the new Web Sign-In option via the phone home screen

Step 2: Once Web Sign-In is selected the phone displays a unique device code, this code is generated within the region the phone is set to and is retrieved via the Device Configuration Web Service

Step 3: Via your computer web browser access the web page displayed on the phone and enter the email associated with your Skype for Business Online account

Step 4: Once the email is entered the user is prompted to sign-in with his or her Office 365 account credentials

Step 5: Enter the device code displayed on the phone screen

Once the code is entered the phone vendor details are displayed

Finally the web page acknowledges that sign-in is complete and the browser session can be closed

The phone sign-in completes without any user intervention

That’s it!

Next up let’s look at how this works behind the scenes. The first thing we need to understand is that Modern Authentication (OAuth 2.0) is used to facilitate this authentication process. Note: even with Skype for Business Online set to

“Set-CsOAuthConfiguration -ClientAdalAuthOverride NoOverride”

(as per documentation here) Web Sign-In is still possible.

The flow chart below outlines the interaction via the various services:

Step 1: The IP Phone requests a localized device pairing site and pairing code (valid for two minutes).

Step 2: The end-user opens their local device pairing website within their web browser. After inputting their device pairing code they are redirected to the Skype for Business device pairing website (where authentication credentials are added).

Step 3: Once authentication is completed an OAuth 2.0 access token is shared with the IP Phone.

Step 4: The users UPN is extracted from the token and Skype for Business autodiscovery is performed against this account.

Step 5: The Skype for Business online server responds and issues a user certificate (valid for 8 hours) with the access token. Remember TLS-DSK?

Step 6: SIP registration completes. That’s it!

If you’ve not tried IP Phone Web Sign-In then I’d recommend you give it a go, as always comments welcome.