Set Microsoft Teams to Record Automatically [6 Different Methods]

If you’ve ever wrapped up a Teams meeting only to realize nobody hit the record button, you know how frustrating that is. Especially when you needed those notes, that demo walkthrough, or that client discussion for reference later.

The good news? Teams lets you automatically record meetings – so you never have to worry about it again. In this guide, I’ll walk you through every way to do it: as a meeting organizer, through Meeting Options, using the Teams Admin Center, with PowerShell, and even through meeting templates.

Let’s set Microsoft Teams to record automatically step by step.

What Does “Automatic Recording” Actually Mean?

When you turn on automatic recording, the meeting starts recording the moment the first person joins. Nobody needs to click anything. The recording starts automatically and saves to OneDrive (for personal meetings) or SharePoint (for channel meetings) when the meeting ends.

One thing worth knowing: in auto-recorded meetings, participants are asked to consent before unmuting or turning on their camera. They’ll see a “Yes” or “No” prompt. If they choose “No,” they join in view-only mode and can’t interact with the recording. This is Microsoft’s built-in compliance feature.

Set Microsoft Teams to Record Automatically

Now I will show you how to set Microsoft Teams to automatically record using 6 different approaches.

Method 1: Set Automatic Recording When Scheduling a Meeting in Teams

This is the easiest one and works for most regular users. You don’t need any admin rights; you just need to be the meeting organizer.

Here’s how to do it:

  1. Open Microsoft Teams and go to the Calendar tab on the left sidebar.
  2. Click New meeting to schedule a meeting.
  3. Fill in your meeting title, date, time, and attendees as usual.
  4. Before saving, look to the right side of the meeting creation form you’ll see a drop-down for “Record and transcribe automatically.”
  5. Select Record and transcribe.
  6. Save the meeting.
Set Microsoft Teams to Record Automatically

That’s it. Every time that meeting runs, it will start recording automatically the moment it begins.

Quick tip: This setting applies per meeting. If you have a recurring meeting, you’ll want to edit the whole series and turn it on at the series level — not just one instance.

Method 2: Update an Already Scheduled Meeting via Meeting Options in Microsoft Teams

If your meeting is already on the calendar, no problem. You can still turn on automatic recording from Meeting Options.

Here’s how:

  1. Go to your Teams Calendar.
  2. Find the meeting you want to update, then click it.
  3. Click Edit to open the meeting details.
  4. Inside the meeting details, click Online Meeting Options — this opens a separate settings page in your browser.
  5. Scroll down to the Recording & Transcription section.
  6. Find “Record and transcribe automatically” and set it to Record and transcribe.
  7. Apply the changes.
Update an Already Scheduled Meeting via Meeting Options in Microsoft Teams

The same thing works from Outlook Calendar too — open the meeting event, click the Teams Meeting Options link in the body of the invite, and you’ll get to the same settings page.

Method 3: Enable Auto-Recording from the Teams Admin Center in Microsoft Teams

If you’re a Teams Administrator (or Global Admin) and want to set automatic recording as the default for your entire organization or a specific group, you can do so in the Teams Admin Center.

Here’s the process:

  1. Go to admin.teams.microsoft.com and sign in with your admin credentials.
  2. In the left menu, navigate to Meetings > Meeting policies.
  3. Either edit the Global (Org-wide default) policy or create a new custom policy.
Enable Auto-Recording from the Teams Admin Center in Microsoft Teams
  1. Inside the policy, scroll to the Recording & transcription section.
  2. Please turn on “Require participant agreement for recording, transcription, and Copilot.” This must be on for recording to work.
  3. Save the policy.
Microsoft Teams Enable Auto-Recording from the Teams Admin Center

If you created a custom policy, you’ll need to assign it to users or groups from the Users section in the admin center. The Global policy applies to everyone who isn’t assigned a specific custom policy.

Important: Policy changes can take 1 to 24 hours to fully apply across your tenant. If you need it faster, ask users to sign out of Teams completely and sign back in.

Method 4: Use PowerShell to Enable Auto-Recording

If you’re comfortable with PowerShell (and honestly, it’s worth getting comfortable with it for Teams admin tasks), this is the fastest way to push auto-recording settings across your org.

Prerequisites:

Step 1 — Connect to Teams PowerShell:

Connect-MicrosoftTeams

Step 2 — Check your current Global policy settings:

Get-CsTeamsMeetingPolicy -Identity "Global" | Select AutoRecording, AllowTranscription

This shows you what’s currently configured before you make any changes.

Step 3 — Enable auto-recording and transcription on the Global policy:

Set-CsTeamsMeetingPolicy -Identity "Global" -AutoRecording Enabled -AllowTranscription $true

Step 4 — Verify the change applied:

Get-CsTeamsMeetingPolicy -Identity "Global" | Select AutoRecording, AllowTranscription

You should see AutoRecording : Enabled and AllowTranscription : True.

If you’re assigning a specific custom policy (like AllOn) to all users instead of editing the Global policy, you can do it in bulk:

$users = Get-CsOnlineUser | Where-Object { $_.TeamsMeetingPolicy -ne "AllOn" }
foreach ($user in $users) {
Grant-CsTeamsMeetingPolicy -Identity $user.UserPrincipalName -PolicyName "AllOn"
}

This loops through every user who isn’t already on the AllOn policy and assigns them to it.

Method 5: Use Meeting Templates (Teams Premium)

If your organization has Teams Premium licenses, you can use meeting templates to enforce auto-recording across specific meeting types — and even lock the setting so organizers can’t turn it off.

Here’s how to set it up:

  1. In the Teams Admin Center, go to Meetings > Meeting templates.
  2. Click Add to create a new template.
  3. Give it a name (like “All-Hands Meeting” or “Client Call Template”).
  4. Under Recording & transcription, set “Record and transcribe automatically” to On.
  5. If you want to prevent organizers from changing this, click the lock icon next to the setting.
  6. Save and publish the template.
Meeting Templates

Once the template is active, when an organizer schedules a meeting and selects that template, the recording will start automatically without any extra steps. No manual toggling required.

Note: Only organizers with a Teams Premium license can use assigned meeting templates. If your org doesn’t have Teams Premium, stick with Methods 1–4.

Method 6: Sensitivity Labels for Auto-Recording

This one is more advanced and falls under Microsoft Purview compliance features. If your organization uses sensitivity labels (for example, to classify meetings as Confidential or Internal), you can configure those labels to automatically record meetings.

An admin sets this up in the Microsoft Purview compliance portal, under Information protection > Labels. Within a label’s configuration, there’s a section for Teams meetings where you can mandate recording and transcription.

This is most useful when you want to ensure that meetings involving regulated content (such as HR discussions or legal reviews) are always recorded for compliance purposes — regardless of who the organizer is.

Where Do Recordings Go?

This is one of the most common follow-up questions, so let me answer it here.

  • Personal meetings and one-on-one calls: The recording saves to the organizer’s OneDrive in a folder called “Recordings.”
  • Channel meetings: The recording is saved to SharePoint in the channel’s Team folder.

All participants with access to the meeting get a link to the recording in the meeting chat automatically. You can also find recordings by going to Chat > the meeting chat > Shared files.

Recordings have a default expiration policy in many tenants (often 60 or 120 days), so if you need to keep something permanently, make sure to move it or change the expiration settings.

Quick Recap: Which Method Should You Use?

Here’s a simple way to decide:

  • You’re a regular user scheduling your own meetings → Use Method 1 or 2
  • You’re an admin and want org-wide auto-recording → Use Method 3 or 4
  • You want to enforce it for specific meeting types → Use Method 5 (Templates)
  • You need it for compliance purposes → Use Method 6 (Sensitivity Labels)

A Few Things to Keep in Mind

  • The “Record and transcribe automatically” setting is controlled by meeting organizers by default — but admins can override this with templates or sensitivity labels.
  • Consent prompts will appear for participants when joining auto-recorded meetings. This is required and can’t be disabled — it’s a compliance requirement.
  • If you don’t see the recording option at all, it’s likely that your admin has disabled cloud recording in your meeting policy. Check with your IT team.
  • Transcription is now on by default in most tenants (Microsoft changed this in early 2025), so auto-recording will usually include an auto-transcript.

Also, you may like:

Power Apps functions free pdf

30 Power Apps Functions

This free guide walks you through the 30 most-used Power Apps functions with real business examples, exact syntax, and results you can see.

Download User registration canvas app

DOWNLOAD USER REGISTRATION POWER APPS CANVAS APP

Download a fully functional Power Apps Canvas App (with Power Automate): User Registration App