Merge pull request #2920 from MaratMussabekov/2850

Update create-a-device-account-using-office-365.md, issue #2850
This commit is contained in:
Jeanie Decker
2019-03-15 06:41:25 -07:00
committed by GitHub

View File

@ -190,15 +190,15 @@ Enable the device account with Skype for Business.
In order to enable Skype for Business, your environment will need to meet the following prerequisites: In order to enable Skype for Business, your environment will need to meet the following prerequisites:
- You'll need to have Lync Online (Plan 2) or higher in your O365 plan. The plan needs to support conferencing capability. - You'll need to have Skype for Business Online Standalone Plan 2 or higher in your O365 plan. The plan needs to support conferencing capability.
- If you need Enterprise Voice (PSTN telephony) using telephony service providers for the Surface Hub, you need Lync Online (Plan 3). - If you need Enterprise Voice (PSTN telephony) using telephony service providers for the Surface Hub, you need Skype for Business Online Standalone Plan 3.
- Your tenant users must have Exchange mailboxes. - Your tenant users must have Exchange mailboxes.
- Your Surface Hub account does require a Lync Online (Plan 2) or Lync Online (Plan 3) license, but it does not require an Exchange Online license. - Your Surface Hub account does require a Skype for Business Online Standalone Plan 2 or Skype for Business Online Standalone Plan 3 license, but it does not require an Exchange Online license.
1. Start by creating a remote PowerShell session from a PC. 1. Start by creating a remote PowerShell session from a PC.
```PowerShell ```PowerShell
Import-Module LyncOnlineConnector Import-Module SkypeOnlineConnector
$cssess=New-CsOnlineSession -Credential $cred $cssess=New-CsOnlineSession -Credential $cred
Import-PSSession $cssess -AllowClobber Import-PSSession $cssess -AllowClobber
``` ```
@ -348,15 +348,15 @@ Enable the device account with Skype for Business.
In order to enable Skype for Business, your environment will need to meet the following prerequisites: In order to enable Skype for Business, your environment will need to meet the following prerequisites:
- You'll need to have Lync Online (Plan 2) or higher in your O365 plan. The plan needs to support conferencing capability. - You'll need to have Skype for Business Online Standalone Plan 2 or higher in your O365 plan. The plan needs to support conferencing capability.
- If you need Enterprise Voice (PSTN telephony) using telephony service providers for the Surface Hub, you need Lync Online (Plan 3). - If you need Enterprise Voice (PSTN telephony) using telephony service providers for the Surface Hub, you need Skype for Business Online Standalone Plan 3.
- Your tenant users must have Exchange mailboxes. - Your tenant users must have Exchange mailboxes.
- Your Surface Hub account does require a Lync Online (Plan 2) or Lync Online (Plan 3) license, but it does not require an Exchange Online license. - Your Surface Hub account does require a Skype for Business Online Standalone Plan 2 or Skype for Business Online Standalone Plan 3 license, but it does not require an Exchange Online license.
1. Start by creating a remote PowerShell session from a PC. 1. Start by creating a remote PowerShell session from a PC.
```PowerShell ```PowerShell
Import-Module LyncOnlineConnector Import-Module SkypeOnlineConnector
$cssess=New-CsOnlineSession -Credential $cred $cssess=New-CsOnlineSession -Credential $cred
Import-PSSession $cssess -AllowClobber Import-PSSession $cssess -AllowClobber
``` ```
@ -372,8 +372,7 @@ If you aren't sure what value to use for the `RegistrarPool` parameter in your e
3. To enable your Surface Hub account for Skype for Business Server, run this cmdlet: 3. To enable your Surface Hub account for Skype for Business Server, run this cmdlet:
```PowerShell ```PowerShell
Enable-CsMeetingRoom -Identity $strEmail -RegistrarPool Enable-CsMeetingRoom -Identity $strEmail -RegistrarPool "sippoolbl20a04.infra.lync.com" -SipAddressType EmailAddress
"sippoolbl20a04.infra.lync.com" -SipAddressType EmailAddress
``` ```