100% Free Forever
AI-Powered Learning
Industry Expert Content
Certificates & Badges
Learn At Your Own Pace
Microsoft 365

Teams Lifecycle Management

Govern how teams are created, named, expired, archived, and deleted across their full lifecycle using Microsoft 365 Group policies, templates, and retention.

AdministrationIntermediate8 min readJul 10, 2026
Analogies

Team Creation Governance

Every Team in Microsoft Teams is backed by a Microsoft 365 Group, which provides the shared mailbox, SharePoint site, and calendar behind the scenes. Administrators can restrict who is allowed to create new teams by designating a specific security group as the only group whose members can create Microsoft 365 Groups, configured through the Microsoft Entra ID group creation settings rather than the Teams admin center itself. Naming policies, applied through Entra ID, can enforce a prefix or suffix, such as 'Team-' or '-EXT' for external-facing teams, and can block a custom list of reserved or offensive words at both creation and rename time.

🏏

Cricket analogy: A cricket board restricting who can register a new franchise to only its official board members, rather than letting any fan start one, mirrors how Teams restricts group/team creation to a designated security group.

Group Expiration Policy and Renewal

Microsoft 365 Groups, and therefore the Teams built on them, can have an expiration policy configured in Entra ID, commonly set to 180 or 365 days, that sends renewal notices to team owners as the expiration date approaches. If an owner does not renew within the notice window, the group and its associated Team are soft-deleted automatically, but remain recoverable from the Entra ID recycle bin for 30 days before permanent deletion. Groups that show recent activity, such as file edits, chat messages, or calendar events, are typically auto-renewed by Microsoft 365 without requiring manual owner action.

🏏

Cricket analogy: A cricket league automatically deregistering a club that submits no fixtures or team-sheet updates for a season, but keeping its registration on a 30-day grace list before final removal, mirrors how an inactive Team is soft-deleted then recoverable for 30 days.

powershell
# Connect to Microsoft Graph and enable a group expiration policy tenant-wide
Connect-MgGraph -Scopes "Directory.ReadWrite.All"

$expirationPolicy = @{
    groupLifetimeInDays = 180
    managedGroupTypes   = "Selected"
    alternateNotificationEmails = "m365-admins@contoso.com"
}
New-MgGroupLifecyclePolicy -BodyParameter $expirationPolicy

# Add specific groups (Teams) to the managed expiration policy
Add-MgGroupLifecyclePolicyGroup -GroupLifecyclePolicyId $policyId -GroupId $teamGroupId

# Create a new team from a built-in template for consistent provisioning
New-Team -DisplayName "Incident Response - Q3" -Template "com.microsoft.teams.template.ManageAProject"

Archiving vs Deleting a Team

Archiving a Team, through the Teams admin center or the Set-TeamArchivedState PowerShell cmdlet, makes it read-only: existing channels, files, tabs, and chat history remain fully accessible for reference, but no new messages, file edits, or channel activity can occur unless the team is later unarchived. This is distinct from deleting a Team, which removes it from active use entirely, though the underlying Microsoft 365 Group, and therefore the Team, can typically still be restored from the Entra ID recycle bin within 30 days by an administrator before the data is permanently purged.

🏏

Cricket analogy: A stadium being placed in 'heritage preserved' status, viewable for tours but with no new matches scheduled there, mirrors how an archived Team stays viewable and read-only rather than being demolished like a fully deleted one.

Retention policies configured in Microsoft Purview can independently preserve Teams chat and channel messages for a defined retention period even after a Team is deleted, because retention operates at the underlying data (mailbox/SharePoint) layer rather than depending on the Team object still existing.

Teams Templates for Consistent Provisioning

Templates, whether built-in options like 'Manage a project' and 'Organize a help desk,' or custom templates defined as JSON specifying channels, tabs, and installed apps, pre-populate a new Team the moment it is created via New-Team -Template. This ensures every team created for a similar purpose, such as an incident-response war room or a regional sales kickoff, starts with a consistent structure instead of each team owner manually recreating the same channels and app tabs from scratch every time.

🏏

Cricket analogy: A cricket academy issuing every new regional center a standardized coaching curriculum and kit list instead of letting each center improvise its own setup mirrors how a Teams template pre-populates consistent channels for every new team.

If a Team's sole owner leaves the organization or their account is deleted without first transferring ownership, the Team can become orphaned with no one able to manage membership, settings, or app installs. Always ensure every Team has at least two owners as a standard governance practice.

  • Every Team is backed by a Microsoft 365 Group providing its mailbox, SharePoint site, and calendar.
  • Team creation can be restricted to a designated security group, and naming policies can enforce prefixes/suffixes and block reserved words.
  • Group expiration policies auto-renew active groups but soft-delete inactive ones after the configured lifetime unless an owner renews.
  • Soft-deleted groups/Teams are recoverable from the Entra ID recycle bin for 30 days before permanent deletion.
  • Archiving a Team makes it fully read-only while preserving all content, distinct from deleting it.
  • Microsoft Purview retention policies can preserve Teams content independently of whether the Team itself still exists.
  • Templates standardize the channels, tabs, and apps a new Team starts with, avoiding inconsistent manual setup.

Practice what you learned

Was this page helpful?

Topics covered

#Microsoft365#MicrosoftTeamsDevelopmentStudyNotes#MicrosoftTechnologies#TeamsLifecycleManagement#Teams#Lifecycle#Management#Team#StudyNotes#SkillVeris