microsoft teams architecture deep dive · microsoft 365 teams admin roles • teams service...

23
MICROSOFT 365 Microsoft Teams Architecture Deep Dive Maarten Eekels - @maarteneekels

Upload: others

Post on 22-May-2020

78 views

Category:

Documents


1 download

TRANSCRIPT

Page 1: Microsoft Teams Architecture Deep Dive · MICROSOFT 365 Teams admin roles • Teams Service Administrator: The overall Teams workload admin, who can also manage and create O365 Groups

MICROSOFT 365

Microsoft Teams

Architecture Deep Dive

Maarten Eekels - @maarteneekels

Page 2: Microsoft Teams Architecture Deep Dive · MICROSOFT 365 Teams admin roles • Teams Service Administrator: The overall Teams workload admin, who can also manage and create O365 Groups

MICROSOFT 365

Contact

@maarteneekels

[email protected]

www.eekels.net

Page 3: Microsoft Teams Architecture Deep Dive · MICROSOFT 365 Teams admin roles • Teams Service Administrator: The overall Teams workload admin, who can also manage and create O365 Groups

MICROSOFT 365

Teams logical architecture

Page 4: Microsoft Teams Architecture Deep Dive · MICROSOFT 365 Teams admin roles • Teams Service Administrator: The overall Teams workload admin, who can also manage and create O365 Groups

MICROSOFT 365

Where is everything stored?

Page 5: Microsoft Teams Architecture Deep Dive · MICROSOFT 365 Teams admin roles • Teams Service Administrator: The overall Teams workload admin, who can also manage and create O365 Groups

MICROSOFT 365

Outside the compliancy perimeter

Page 6: Microsoft Teams Architecture Deep Dive · MICROSOFT 365 Teams admin roles • Teams Service Administrator: The overall Teams workload admin, who can also manage and create O365 Groups

MICROSOFT 365

Teams client

Page 7: Microsoft Teams Architecture Deep Dive · MICROSOFT 365 Teams admin roles • Teams Service Administrator: The overall Teams workload admin, who can also manage and create O365 Groups

MICROSOFT 365

Memberships and rolesTeam Owner Team Member Team Guest

Create team ✓ - -

Leave team ✓ ✓ ✓

Edit team name/description ✓ - -

Delete team ✓ - -

Add channel ✓ ✓* ✓*

Edit channel name/description ✓ ✓* ✓*

Delete channel ✓ ✓* ✓*

Add members ✓ - -

Add tabs ✓ ✓* -

Add connectors ✓ ✓* -

Add bots ✓ ✓* -

* Can be restricted

through Team

Settings by the owner

Page 8: Microsoft Teams Architecture Deep Dive · MICROSOFT 365 Teams admin roles • Teams Service Administrator: The overall Teams workload admin, who can also manage and create O365 Groups

MICROSOFT 365

Teams admin roles• Teams Service Administrator: The overall Teams workload

admin, who can also manage and create O365 Groups.

• Teams Communication Administrator: This role can manage

meetings and calling functionality in Microsoft Teams.

• Teams Communications Support Engineering: Users who are

assigned this role have access to advanced call analytics tools.

• Teams Communications Support Specialist: This role has access

to basic call analytics tools.

Page 9: Microsoft Teams Architecture Deep Dive · MICROSOFT 365 Teams admin roles • Teams Service Administrator: The overall Teams workload admin, who can also manage and create O365 Groups

MICROSOFT 365

Teams settings on tenant level

Page 10: Microsoft Teams Architecture Deep Dive · MICROSOFT 365 Teams admin roles • Teams Service Administrator: The overall Teams workload admin, who can also manage and create O365 Groups

MICROSOFT 365

Settings on team level

Page 11: Microsoft Teams Architecture Deep Dive · MICROSOFT 365 Teams admin roles • Teams Service Administrator: The overall Teams workload admin, who can also manage and create O365 Groups

MICROSOFT 365

Manage Teams with PowerShellInstall-Module -Name MicrosoftTeamsGet-Team

$groupId = (Get-AzureADGroup -SearchString “<group name>").objectIdGet-Team -GroupId $groupId | flSet-Team -GroupId $groupId -<setting name> <boolean>

Page 12: Microsoft Teams Architecture Deep Dive · MICROSOFT 365 Teams admin roles • Teams Service Administrator: The overall Teams workload admin, who can also manage and create O365 Groups

MICROSOFT 365

Allow only specific people to create Teams

Azure Active Directory versie 2 PowerShell module required

Connect-AzureADGet-AzureADDirectorySetting$Policy = Get-AzureADDirectorySettingTemplate –Id 62375ab9-6b52-47ed-826b-58e47e0e304b$Setting = $Policy.CreateDirectorySetting()$Setting[“EnableGroupCreation”] = “false”$Setting[“GroupCreationAllowedGroupId”] = “your group ID”New-AzureADDirectorySetting -DirectorySetting $Setting

https://docs.microsoft.com/en-

us/powershell/azure/overview?view=azureadps-2.0

Page 13: Microsoft Teams Architecture Deep Dive · MICROSOFT 365 Teams admin roles • Teams Service Administrator: The overall Teams workload admin, who can also manage and create O365 Groups

MICROSOFT 365

External guest access• Default setting: Off for tenants / On for individual Teams

• Disabling or enabling external guest user access for individual Teams is only

possible through PowerShell

$template = Get-AzureADDirectorySettingTemplate | ? {$_.displayname -eq"group.unified.guest"}

$settings = $template.CreateDirectorySetting()

$settings["AllowToAddGuests"]=$False

$groupID = (Get-AzureADGroup -SearchString “<your group name").ObjectId

Get-AzureADObjectSetting -TargetObjectId $groupID -TargetType Groups | fl Values

New-AzureADObjectSetting -TargetObjectId $groupID -TargetType Groups-DirectorySetting $settings

Get-AzureADObjectSetting -TargetObjectId $groupId -TargetType Groups | Set-AzureADObjectSetting -TargetObjectId $groupId -TargetType Groups -DirectorySetting $settings

Page 14: Microsoft Teams Architecture Deep Dive · MICROSOFT 365 Teams admin roles • Teams Service Administrator: The overall Teams workload admin, who can also manage and create O365 Groups

MICROSOFT 365MICROSOFT 365

DEMO

Page 15: Microsoft Teams Architecture Deep Dive · MICROSOFT 365 Teams admin roles • Teams Service Administrator: The overall Teams workload admin, who can also manage and create O365 Groups

MICROSOFT 365

Groups expiration

Page 16: Microsoft Teams Architecture Deep Dive · MICROSOFT 365 Teams admin roles • Teams Service Administrator: The overall Teams workload admin, who can also manage and create O365 Groups

MICROSOFT 365

Naming conventionsGet-AzureADDirectorySetting

$directorySetting = Get-AzureADDirectorySetting -Id 92efeacc-89c6-4c16-b1cf-107aaf87f7dc

$directorySetting.Values

$directorySetting["PrefixSuffixNamingRequirement"] ="Grp_[Department]_[GroupName]"

$directorySetting["CustomBlockedWordsList"]="Payroll,CEO,HR"

Set-AzureADDirectorySetting -Id (Get-AzureADDirectorySetting |where -Property DisplayName -Value "Group.Unified" -EQ).id -DirectorySetting $directorySetting

Page 17: Microsoft Teams Architecture Deep Dive · MICROSOFT 365 Teams admin roles • Teams Service Administrator: The overall Teams workload admin, who can also manage and create O365 Groups

MICROSOFT 365

Retention policies

Page 18: Microsoft Teams Architecture Deep Dive · MICROSOFT 365 Teams admin roles • Teams Service Administrator: The overall Teams workload admin, who can also manage and create O365 Groups

MICROSOFT 365

Archiving Teams

Page 19: Microsoft Teams Architecture Deep Dive · MICROSOFT 365 Teams admin roles • Teams Service Administrator: The overall Teams workload admin, who can also manage and create O365 Groups

MICROSOFT 365MICROSOFT 365

DEMO

Page 20: Microsoft Teams Architecture Deep Dive · MICROSOFT 365 Teams admin roles • Teams Service Administrator: The overall Teams workload admin, who can also manage and create O365 Groups

MICROSOFT 365

Graph API

Page 21: Microsoft Teams Architecture Deep Dive · MICROSOFT 365 Teams admin roles • Teams Service Administrator: The overall Teams workload admin, who can also manage and create O365 Groups

MICROSOFT 365MICROSOFT 365

DEMO

Page 22: Microsoft Teams Architecture Deep Dive · MICROSOFT 365 Teams admin roles • Teams Service Administrator: The overall Teams workload admin, who can also manage and create O365 Groups

MICROSOFT 365MICROSOFT 365

That’s all folks!Please review my session in the Yellenge App!

@maarteneekels

Page 23: Microsoft Teams Architecture Deep Dive · MICROSOFT 365 Teams admin roles • Teams Service Administrator: The overall Teams workload admin, who can also manage and create O365 Groups

MICROSOFT 365