Configuring Skype for Business Online
This topic demonstrates how to configure Skype for Business Online Connectivity for SSO with EmpowerID.
Prerequisites
You must have a licensed corporate Office 365 account and connect EmpowerID to Office 365, and follow these steps:
Download Skype (and Lync) Online Connector modules to manage Skype for Business Online deployments via Windows Powershell from Microsoft at: https://www.microsoft.com/en-us/download/details.aspx?id=39366.
Install the downloaded SkypeOnlinePowershell.exe. By default, the modules download to this folder:
C:\Program Files\Common Files\Skype for Business Online\ModulesCopy the LyncOnlineConnector and the SkypeOnlineConnector folders from there to this folder:
C:\Windows\System32\WindowsPowerShell\v1.0\Modules
To configure Skype for Business Online for Modern Authentication
Run Windows PowerShell as an administrator.
Run the following cmdlet to enable execution of scripts on the machine:
Set-ExecutionPolicy RemoteSignedNavigate to the
C:\Windows\System32\WindowsPowerShell\v1.0\Modulesfolder and run the following cmdlet:Get-Module -ListAvailableVerify that SkypeOnlineConnector is in the returned list.
Run the following cmdlet to create a credential object:
$credential = Get-CredentialIn the Enter Credentials window that appears, type the username and password for an Office 365 global administrator and click OK.
Once you have connected, run the following command to import the Skype Online connector:
Import-Module SkypeOnlineConnectorRun the following cmdlet to create a remote PowerShell session:
$sfboSession = New-CsOnlineSession -Credential $credentialRun the following cmdlet to download the scripts, cmdlets, and other items needed to manage Skype for Business Online:
Import-PSSession $sfboSessionRun the following cmdlet to retrieve the Open Authorization (OAuth) configuration settings currently in use in your organization:
Get-CsOAuthConfigurationRun the following cmdlet to enable Modern Authentication:
Set-CsOAuthConfiguration -ClientAdalAuthOverride AllowedRun the following cmdlet to close the session:
Remove-PSSession $sfboSession