Module4 CreatingtheResourceAccount1
Module4 CreatingtheResourceAccount1
Andrew Higgs
Regional Partner Technical Lead -
Asia
Learn how what a resource account is Objectives
Assign Teams
Teams License
Configure
Teams Rooms
Microsoft 365 admin center
Sign in to: https://admin.Microsoft.com
Navigate to Resources –> Rooms & equipment
Microsoft 365 admin center
See and edit current room inventory
Click the +Add resource button to create a new
room
Microsoft 365 admin center
Fill in appropriate values
Microsoft 365 admin center
Acknowledgement that the room has been created
Microsoft 365 admin center
Available scheduling options
Microsoft 365 admin center
Navigate to Users -> Active Users
Click on name
Microsoft 365 admin center
Click on Reset password
Type in new password
Do not tick the box to require a password change.
Microsoft 365 admin center
Click on License and apps
Microsoft 365 admin center
Assign the appropriate license
Manually provisioning user
Prerequisites
• Azure Active Directory PowerShell for Graph module
Install-Module -Name AzureAD
• Exchange Online PowerShell Module
Install-Module -Name ExchangeOnlineManagement
• (Optional) Microsoft Teams PowerShell Module
Import-Module –Name MicrosoftTeams
Determine license to assign
You need to assign at least 1 license to the
provisioned user
Use Get-AzureADSubscribedSku to list your available
licenses
C:\> Connect-AzureAD
C:\> Get-AzureADSubscribedSku | Select -Property
Sku*,ConsumedUnits -ExpandProperty PrepaidUnits | Where
{($_.SkuPartNumber -like "Meeting*" -or $_.SkuPartNumber -like
"MTR*“-or $_.SkuPartNumber -like "Microsoft_Teams_Rooms*")}
SkuId : 6af4b3d6-14bb-4a2a-960c-6c902aad34f3
SkuPartNumber : Microsoft_Teams_Rooms_Basic
ConsumedUnits : 1
Enabled : 10
Suspended : 0
Warning : 0
SkuId : 4cde982a-ede4-4409-9ae6-b003453c8ea6
SkuPartNumber : Microsoft_Teams_Rooms_Pro
ConsumedUnits : 8
Enabled : 50
Suspended : 0
Warning : 0
PowerShell variables
Variables will make provisioning easier, especially
if a script is used to provision resource accounts in
bulk
Account name
$acctUpn='[email protected]'
The unique name of the mailbox
$MailBoxName='focusroom'
Specify the Exchange alias (also known as the mail nickname) for the
recipient
$MailBoxAlias='focusroom'
Password for the account
$Password='ThisIs1ReallyLongPassword!'
License to assign
$ADLicense='4cde982a-ede4-4409-9ae6-b003453c8ea6'
Two letter ISO code for the country where the tenant is
registered
$UsageLocation='US'
Friendly name for the room
$DisplayName='Focus Room 1'
Provisioning a single user
Connect to Azure AD and Exchange Online
C:\> Connect-AzureAD
C:\> Connect-ExchangeOnline -ShowProgress $true
Provisioning a single user
Create room Mailbox
Assign license
Then read the CSV file and loop through the entries
Skype for Business
If you are using Skype for Business
• Enable a user
• Convert to a Meeting Room (Optional)
Click on recipients/resources
$AdditionalResponse=@"
<hr style="font-family: Calibri, Arial, Helvetica, sans-
serif; font-size: 12pt; color: rgb(0, 0, 0);"><p
align="center"><img width="291"
height="137"src="https://images.contoso.com/msc17_collaborat
ion_002.png"></p><p align="center">This room is equipped
with One Touch Join – Did you make this a Microsoft Teams or
Skype for Business meeting?</p><p align="center">Become a
meeting ninja – <a
href="https://aka.ms/TeamsRoomVideo">watch this short
video</a>!</p><p align="center"><br></p><hr><img
style="margin-right: auto; margin-left: auto; float: none;
display: block;"
src="https://images.contoso.com/2020/03/contoso-icon.png">
"@
Set-CalendarProcessing -Identity $MailBoxAlias ‐
AddAdditionalResponse $true -AdditionalResponse
$AdditionalResponse
Optional settings
Security related
Set-Place 'MTR-TVW-Conference' ‐
IsWheelChairAccessible $true -Capacity 12 ‐
DisplayDeviceName $True
Set-Place 'MTR-TVW-
[email protected]' ‐
IsWheelChairAccessible $true ‑AudioDeviceName
'EPOS Adapt' -Building 'Townview' -Floor 4 -
City 'St. Petersburg' -State 'FL' -
CountryOrRegion 'US' -Capacity 4 -Street
'201 4th Ave S' ‑PostalCode 33701 -
VideoDeviceName 'Logi Rally' -
Displaydevicename 'Single Monitor' -Label
'B17'
Assigning phone number
Assigning phone number
Calling plans
Permit Teams Rooms to call external users and conference
bridges
For USA and Canada, you must create an emergency
location first
Assigning phone number
PowerShell
C:\> $acctUpn='[email protected]'
C:\> $PhoneNumber='+14255553223'
C:\> $LocationID='c04255ef-0aac-4cc8-b5fe-510c4578f792'
C:\> Set-CsUser -Identity "MTR-TVW- This lets you pass a Skype for
[email protected]" Business Enterprise Voice phone
-LineUri "tel:+13175551212" number to the Teams Room.
Summary
We saw how to provision a resource
account
Objectives