...
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 |
...
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 : {} |
Back to Top Noprint
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 |
...
Step | Action | ||
---|---|---|---|
1 | Execute this PowerShell command to ensure that the user has been created:
| ||
2 | Assign the proper voice policy and phone number using the PowerShell command:
| ||
3 | Ensure that the user has the proper voice policy using the PowerShell command:
| ||
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:
| ||
5 | Ensure that the user has the proper configuration by using the PowerShell command:
|
Back to Top Noprint
...
Back to Top Noprint