A. Pre-requisites:

1. Bizphone:

  • MS Teams License 
  • Number 

2. Microsoft Teams Licenses:

  • Office 365 E1 
  • Office 365 E3
  • Office 365 E5 
  • Microsoft E3
  • Microsoft E5 
  • Microsoft F1 
  • Office 365 F3 
  • Office 365 O365
  • Microsoft 365 A1
  • Microsoft 365 A3 for faculty
  • Microsoft 365 A3 for students
  • Microsoft 365 A5 for faculty
  • Microsoft 365 A5 for students
  • Office 365 A5 for faculty 
  • Office 365 A5 for students 
  • Office 365 Education E1 for Faculty
  • Office 365 Education E3 for Faculty
  • Office 365 (Plan G1) for Government 
  • Office 365 (Plan G3) for Government
  • Common Area Phone
  • Microsoft 365 Business Basic + Microsoft 365 Business Voice (without calling plan) add-on
  • Microsoft 365 Business Standard + Microsoft 365 Business Voice (without calling plan) add-on
  • Microsoft 365 Business Premium + Microsoft 365 Business Voice (without calling plan) add-on
  • Microsoft E5
  • Office 365 E5
  • Office 365 A5 for faculty
  • Office 365 A5 for students
  • Microsoft 365 A5 for faculty
  • Microsoft 365 A5 for students
  • Microsoft E3 + Phone System License
  • Microsoft F3 + Phone System License
  • Microsoft 365 A1 + Phone System License
  • Microsoft 365 A3 for faculty + Phone System License
  • Microsoft 365 A3 for students + Phone System License
  • Office 365 E1 + Phone System License
  • Office 365 E3 + Phone System License
  • Office 365 F3 + Phone System License
  • Office 365 Education E1 for Faculty + Phone System License
  • Office 365 Education E3 for Faculty + Phone System License
  • Office 365 (Plan G1) for Government + Phone System License
  • Office 365 (Plan G3) for Government + Phone System License
3. Global Admin access on your Office 365 tenant.
 
4. Powershell environment installed before you can run the Powershell commands later in the guide. 

B. Integration Steps:

1. Go to Bizphone > Setting > MS-Teams > Enable 

 2. Popup to direct you to the Microsoft login portal

 3. Login Microsoft by your global admin account 

 4. Grant access and give permission for B3networks to read and make changes to your office 365 account.

By doing this, we will have the access token to make the API Microsoft call and do the automation for setting up and verifying your domain in Microsoft (step 3), which normally must be done manually with many steps if you choose other competitors.   
 
  **Process if done manually:
  1. Add B3 Connector Domain (e.g: team7620626.sbc1.b3networks.com) to the domain manager in your MS Teams Global admin account.
  2. Verify the domain and provide the TXT record (e.g: MS=ms9800xxxx) to the carrier.
  3. Create a temporary user (domain-activation) to associate with the connector domain.
  4. Activate a temporary user by assigning an E1/E3/E5 license to that user.
  5. After 24 hours can revoke the license of the temporary account.

Go to Bizphone > Setting > MS-Teams > click Verify Domain

**Notes: 
  • Make sure that you have an available license mentioned above so that the system can use it for domain verification. 
  • Once your domain is verified, the system will automatically create the user with name =  domain-activation@<teamid>.sbc1.b3networks.com. 
  • After 24 hours, you can log in to your Microsoft 365 global admin account > Users > Active users > Click on the account created by the system > Licenses and apps > revoke the license and assign it to other real users.

Go to Setting > MS-Teams > select a license to assign > Assign license > Choose one of these options depending on which MS Teams license you have:

  • Office 365 E1 – STANDARDPACK
  • Office 365 E3 – ENTERPRISEPACK
  • Office 365 E5 – ENTERPRISEPREMIUM
  • Microsoft E3 – SPE_E3
  • Microsoft E5 – SPE_E5
  • Microsoft F1 – SPE_F1
  • Office 365 F3 – DESKLESSPACK
  • Office 365 O365_BUSINESS_PREMIUM
  • Microsoft 365 A1 – M365EDU_A1
  • Microsoft 365 A3 for faculty – M365EDU_A3_FACULTY
  • Microsoft 365 A3 for students – M365EDU_A3_STUDENT
  • Microsoft 365 A5 for faculty – M365EDU_A5_FACULTY
  • Microsoft 365 A5 for students – M365EDU_A5_STUDENT
  • Office 365 A5 for faculty – ENTERPRISEPREMIUM_FACULTY
  • Office 365 A5 for students – ENTERPRISEPREMIUM_STUDENT
  • Office 365 Education E1 for Faculty – STANDARDPACK_FACULTY
  • Office 365 Education E3 for Faculty – ENTERPRISEPACK_EDULRG
  • Office 365 (Plan G1) for Government – STANDARDPACK_GOV  
  • Office 365 (Plan G3) for Government – ENTERPRISEPACK_GOV

  2. Assign the extension to proper MS-Teams users

Go to Setting > MS-Teams Link team account > assign ext to MS-Teams user > Link
3. Select the admin account to generate the Powershell Script
Go to Setting > MS-Teams View Script > choose global admin account > Generate > Copy script
NOTE: If you do not know about Powershell, click here to get the Powershell tutorial.
 
Below is the detailed PowerShell script:
 
  • Start PowerShell as Administrator (or with Administrator Privileges):
Install-Module -Name MicrosoftTeams -RequiredVersion 2.3.1
Import-Module MicrosoftTeams -RequiredVersion 2.3.1 
$credential = Get-Credential
Connect-MicrosoftTeams -Credential $credential
 
  • Add the first user to the trunk:
Set-CsUser -identity “<A’s Username>” -EnterpriseVoiceEnabled $true -HostedVoicemail $true -OnPremlineURI tel:+<Number 1>
 
  • Configure Microsoft 365 tenant to enable direct routing:
Set-CsOnlinePstnUsage -Identity Global -Usage @{Add=”B3″}
New-CsOnlineVoiceRoute -Identity “B3” -NumberPattern “.*” -OnlinePstnGatewayList “<B3 Connector Domain>” -Priority 1 -OnlinePstnUsages “B3”
New-CsOnlineVoiceRoutingPolicy -Identity “B3” -OnlinePstnUsages “B3”
 
  • Assign Voice Routing Policy to users:
Grant-CsTeamsCallingPolicy -PolicyName AllowCalling -Identity “”<A’s Username>“”
Grant-CsOnlineVoiceRoutingPolicy -Identity <A’s Username> -PolicyName B3
 
  • Add the rest of the user to the trunk:
Set-CsUser -identity “<B’s Username>” -EnterpriseVoiceEnabled $true -HostedVoicemail $true -OnPremlineURI tel:+<Number 2>
Grant-CsTeamsCallingPolicy -PolicyName AllowCalling -Identity “<B’s Username>
Grant-CsOnlineVoiceRoutingPolicy -Identity <B’s Username> -PolicyName B3
 
Set-CsUser -identity “<C’s Username>” -EnterpriseVoiceEnabled $true 
-HostedVoicemail $true -OnPremlineURI tel:+<Number 3>
Grant-CsTeamsCallingPolicy -PolicyName AllowCalling -Identity “<C’s Username>
Grant-CsOnlineVoiceRoutingPolicy -Identity <C’s Username> -PolicyName B3
 
  • Script for Resource accounts (assign a number to Resource account used for Auto-attendants or Call Queues):
Set-CsOnlineApplicationInstance -Identity <Resource Username> -OnpremPhoneNumber +<Number 4>
Grant-CsTeamsCallingPolicy -PolicyName AllowCalling -Identity “<Resource Username>
Grant-CsOnlineVoiceRoutingPolicy -Identity “<Resource Username>” -PolicyName B3
Call Now Button Call Us To Know More
SCHEDULE A CALL

X
x

View Our Promotions