Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Use PowerShell and an Office 365 Admininstrator account to connect your Office 365 tenant:

 

 

Code Block
PS> Import-Module skypeonlineconnector
PS> $cred = Get-Credential
PS> $Session = New-CsOnlineSession -Credential $cred -Verbose
PS> Import-PSSession $session

 

Familiarize Yourself With Tenant

...

Hybrid configuration

Enable federation on your Tenant:

...

 

Code Block
PS> Get-CsHybridPSTNSite
 
RunspaceId               : 9f7b5758-8109-461b-acc7-133a984abae7
Identity                 : AEPSITE1
EdgeFQDN                 : AEPSITE1.SONUSMS01.COM
Index                    : 1
EnableAutoUpdate         : True
LastTopologyUpdateTime   : 8/30/2016 11:39:09 AM
BitsUpdateTimeWindowList : {}
OsUpdateTimeWindowList   : {}

NoprintBack to Top 

 

Removing the Site List

If the site is not properly created when installing your CCE, you can remove the site with:

...

 

Code Block
 PS> Unregister-CsHybridPSTNAppliance -identity 1e298a7b-9a71-4579-9e82-c2988ceb2bf3 -Force
NoprintBack to Top

 

Managing User Accounts

This section details the steps necessary to configure and enable an Office 365 user for voice.

...

StepAction
1

Execute this PowerShell command to ensure that the user has been created:

Code Block
PS> Get-CsOnlineUser  -Identity site1user1@SonusMS01.com
2

Assign the proper voice policy and phone number using the PowerShell command:

Code Block
PS> Set-CsUser -Identity site1user1@SonusMS01.com -EnterpriseVoiceEnabled $true -HostedVoiceMail $true -OnPremLineURI tel:+15101011001
3

Ensure that the user has the proper voice policy using the PowerShell command:

 

Code Block
 PS> $user = Get-CsOnlineUser site1user1
PS> $user.EnterpriseVoiceEnabled
PS> $user.HostedVoiceMail
PS> $user.VoicePolicy
4

Assign a PSTN site to this user. The site must already exist. If you don't specify a site, your user will be assigned to the default site. If you want to assign the user to a specific site, use:

 

Code Block
PS> Set-CsUserPstnSettings -Identity site1user1 -HybridPSTNSite aepsite1
5

Ensure that the user has the proper configuration by using the PowerShell command:

 

Code Block
PS> Get-CsUserPstnSettings -Identity site1user1
RunspaceId              : c238a624-4bda-470b-9108-e584ec46de03
UserPrincipalName       : site1user1@SonusMS01.com
SipAddress              : sip:site1user1@SonusMS01.com
AllowInternationalCalls : True
HybridPstnSiteName      : AEPSITE1
HybridPstnSiteFqdn      : AEPSITE1.SONUSMS01.COM

NoprintBack to Top 

 

Cloud Connector Edition Automatic Update

...