Fix Archived Team Cannot Be Restored in a Microsoft 365 Group
🔍 WiseChecker

Fix Archived Team Cannot Be Restored in a Microsoft 365 Group

When you archive a team in Microsoft Teams, the associated Microsoft 365 group is hidden from active use, but the data remains in the group. If you try to restore the team and the process fails or the team does not reappear, the root cause is usually a conflict with the Microsoft 365 group, such as a license issue, a deleted group, or a policy that blocks restoration. This article explains why the restoration fails and provides step-by-step methods to bring the team back, including using the Teams admin center and PowerShell. You will also learn how to avoid common pitfalls that prevent a successful restore.

Key Takeaways: Restoring an Archived Team in Microsoft 365

  • Teams admin center > Teams > Manage teams > Restore: The primary button to restore an archived team, but it fails if the group is deleted or unlicensed.
  • Microsoft 365 admin center > Active teams > Group > Restore: Restores a deleted Microsoft 365 group, which is a prerequisite before the team can be restored.
  • PowerShell cmdlet Restore-Team: Command-line method to restore a team when the UI does not work, requiring the GroupId and a valid license.

ADVERTISEMENT

Why an Archived Team Cannot Be Restored in a Microsoft 365 Group

Archiving a team in Teams moves the team to a read-only state, but it does not delete the underlying Microsoft 365 group. The group stores all SharePoint sites, mailboxes, and OneNote notebooks. When you attempt to restore the team, Teams checks the group’s status. If the group is deleted, the restore operation cannot find the group and fails. Another common cause is a missing or expired license for the group owner or the group itself. Microsoft 365 groups require an active license; without it, the restore button is greyed out or returns an error.

A third cause is a policy that restricts who can restore teams. For example, the Teams admin center has a setting called “Archived teams restore” under Org-wide settings. If this is disabled, only global admins or Teams service admins can restore. Finally, if the team was archived more than 30 days ago, the system may have automatically deleted the group if retention policies are not configured. In that case, the restore path goes through the deleted groups recovery window, which is 30 days for most tenants.

What Happens to the Microsoft 365 Group When You Archive a Team

When you archive a team, the group’s membership is preserved, but the group is hidden from the Outlook and Teams clients. The group remains in the Microsoft 365 admin center under Active teams. The SharePoint site becomes read-only, and the mailbox is no longer writable. The group’s expiration policy still applies, so if the group has an expiration date, it can be deleted after that date unless the team is restored before then.

Steps to Restore an Archived Team in a Microsoft 365 Group

Before you start, confirm you have the Teams admin or global admin role. You also need the exact name of the team and the email address of the group. Use the following methods in order, because each one addresses a different failure point.

Method 1: Restore the Group in the Microsoft 365 Admin Center

  1. Open the Microsoft 365 admin center
    Go to admin.microsoft.com and sign in with an account that has global admin rights. In the left navigation, select Teams and then Teams & groups.
  2. Check the deleted groups list
    Select Active teams and look for your team. If it is not there, click Deleted teams in the left pane. If you see the group, select it and click Restore. Wait for the confirmation message.
  3. Verify the group is active
    After restoring, go back to Active teams and confirm the group appears. The group must be active before you can restore the team in Teams.
  4. Restore the team in Teams admin center
    Open the Teams admin center at admin.teams.microsoft.com. Go to Teams > Manage teams. Find the team in the list. If it shows “Archived”, select it and click Restore.

Method 2: Use PowerShell to Restore the Team

  1. Install the Microsoft Teams PowerShell module
    Open Windows PowerShell as an administrator and run Install-Module -Name MicrosoftTeams -Force. If you already have it, run Update-Module MicrosoftTeams.
  2. Connect to Teams
    Run Connect-MicrosoftTeams and sign in with your admin account.
  3. Find the group ID
    Run Get-Team -DisplayName "Your Team Name". Note the GroupId value. If the team is not listed, use Get-UnifiedGroup -Identity "team@domain.com" to find the group.
  4. Restore the team
    Run Restore-Team -GroupId "paste-group-id-here". Wait for the command to finish. It returns a success message if the restore worked.

ADVERTISEMENT

If Teams Still Has Issues After the Main Fix

Teams Shows “Restore Failed” Because the Group Has an Expired License

If the restore fails with an error about licensing, go to the Microsoft 365 admin center > Billing > Licenses. Assign a valid license to the group owner or to the group itself. For Microsoft 365 groups, the license is usually tied to the user who created the group. Check that the owner has an active Exchange Online and SharePoint Online license.

Archived Team Does Not Appear in the Teams Admin Center

If the team is not visible under Manage teams, filter the list by status. Click the Status filter and select Archived. If the team still does not show, the group might be in a soft-deleted state. Use the Microsoft 365 admin center to restore the group first, as described in Method 1.

Restore-Team Cmdlet Returns “Group Not Found”

This error means the group was permanently deleted. Check if the group is in the recycle bin by running Get-UnifiedGroup -SoftDeleted in Exchange Online PowerShell. If it is there, restore it with Restore-UnifiedGroup -Identity "group@domain.com". Then run Restore-Team again.

Teams Admin Center vs PowerShell for Restoring Archived Teams

Item Teams Admin Center PowerShell
Access Web browser, requires admin role Windows or macOS terminal, requires PowerShell module
Speed Slower for multiple restores Faster for batch operations
Error information Shows generic error messages Provides detailed error codes
Group recovery Handles deleted groups via admin center Requires Exchange Online module for soft-deleted groups
Best for Single team restore with UI guidance Multiple restores or advanced troubleshooting

Restoring an archived team is possible when you understand the group lifecycle. Start by checking the group’s status in the Microsoft 365 admin center, then use the Teams admin center or PowerShell to complete the restore. If the group is soft-deleted, recover it first. Always verify the license and the admin role before attempting the restore. After a successful restore, the team returns to its previous state with all channels, files, and chat history intact. To avoid future issues, set a retention policy for Microsoft 365 groups and regularly review the expiration policy.

ADVERTISEMENT