TEAMS.TC.5010 - Auto-admitted users should be restricted
Auto-admitted users should be restricted
Description
This test checks if the auto-admitted users setting is properly restricted in Microsoft Teams meetings.
Policy Statement
Contoso's company policy requires that auto-admitted users must be restricted to EveryoneInCompany, OrganizerOnly, or InvitedUsers to prevent unauthorized access to meetings. This setting controls who can bypass the meeting lobby and join directly.
Why This Matters
Acceptable Settings:
The setting should be configured to one of these secure options:
- EveryoneInCompany - Only authenticated users from your organization are auto-admitted
- OrganizerOnly - Only the meeting organizer bypasses the lobby
- InvitedUsers - Only users specifically invited to the meeting are auto-admitted
Risky Settings:
- Everyone - All participants, including external and anonymous users, bypass the lobby (NOT RECOMMENDED)
If set to "Everyone," any participant with the meeting link can join directly without screening, including potential bad actors, uninvited guests, or malicious users.
How to fix
Configure Auto-Admitted Users in Teams Admin Center
- Navigate to the Teams admin center - Meeting policies
- Select the Global (Org-wide default) policy
- Under Participants & guests, locate Automatically admit people
- Set this option to one of the following secure settings:
- People in my organization (EveryoneInCompany) - Recommended for most organizations
- Organizer only (OrganizerOnly) - Most restrictive, requires manual admission
- People I invite (InvitedUsers) - Balanced approach for meetings with known participants
- Click Save
Verify via PowerShell
# Connect to Teams
Connect-MicrosoftTeams
# Check current auto-admitted users setting
Get-CsTeamsMeetingPolicy -Identity Global | Select-Object AutoAdmittedUsers
# Set to EveryoneInCompany (recommended)
Set-CsTeamsMeetingPolicy -Identity Global -AutoAdmittedUsers EveryoneInCompany
# Verify the change
Get-CsTeamsMeetingPolicy -Identity Global | Select-Object AutoAdmittedUsers
Setting Recommendations
EveryoneInCompany (Recommended for most organizations)
- ✅ Internal users join immediately
- ✅ External users wait in lobby for screening
- ✅ Balance of security and convenience
- ⚠️ External participants may experience slight delay
OrganizerOnly (Maximum security)
- ✅ Highest security - all participants screened
- ✅ Complete control over meeting access
- ✅ Best for sensitive meetings
- ⚠️ Organizer must admit all participants manually
- ⚠️ Can delay meeting start if organizer is late
InvitedUsers (Selective admission)
- ✅ Invited participants join immediately
- ✅ Uninvited participants wait in lobby
- ✅ Good for scheduled meetings with known attendees
- ⚠️ Requires proper calendar invitation management
Impact
Restricting auto-admitted users will:
- ✅ Prevent unauthorized meeting access
- ✅ Enable screening of external participants
- ✅ Reduce risk of meeting disruption
- ✅ Improve meeting security posture
- ⚠️ External participants may wait in lobby
Participants in the lobby can see the meeting title and wait for admission. The organizer receives notifications when participants are waiting and can admit or deny them individually or in bulk.