This commit is contained in:
jdeckerMS
2016-11-29 07:36:54 -08:00
parent a2925d5335
commit 4f7f8fc2bc

View File

@ -313,7 +313,7 @@ In order to enable Skype for Business, your environment will need to meet the fo
1. Start by creating a remote PowerShell session to the Skype for Business online environment from a PC.
```ps1
```
Import-Module LyncOnlineConnector
$cssess=New-CsOnlineSession -Credential $cred
Import-PSSession $cssess -AllowClobber
@ -321,14 +321,14 @@ In order to enable Skype for Business, your environment will need to meet the fo
2. To enable your Surface Hub account for Skype for Business Server, run this cmdlet:
```ps1
```
Enable-CsMeetingRoom -Identity 'HUB01@contoso.com' -RegistrarPool
'sippoolbl20a04.infra.lync.com' -SipAddressType UserPrincipalName
```
If you aren't sure what value to use for the `RegistrarPool` parameter in your environment, you can get the value from an existing Skype for Business user using this cmdlet:
```ps1
```
Get-CsOnlineUser -Identity 'HUB01@contoso.com'| fl *registrarpool*
```