SOLVED

Need help with setting policies for anonymous attendees

Brass Contributor

Hi All,

 

      We would want to apply the following policies to the anonymous attendees in our MS Teams meeting. 

 

1) Anonymous attendees should not be able to mute/unmute themselves only the organizer should be able to do it. 

2) Anonymous attendees should not be able to present their screens 

3) Recording option should not be available to the Anonymous attendees. 

 

Can you guys please help me out in these requirements

 

Thanks

Tiklu

2 Replies
best response confirmed by tiklu ganguly (Brass Contributor)
Solution

@tiklu ganguly 

 

1. Is currently not possible - I would suggest upvoting this on UserVoice https://microsoftteams.uservoice.com/forums/599053-schools-and-universities/suggestions/40349089-org...

2. You can assign attendees the "Attendee" meeting role, which does not allow them to present.

3. The "Attendee" meeting role does not allow them to record the meeting

More info on the different meeting roles and their abilities can be found here - https://support.microsoft.com/en-us/office/roles-in-a-teams-meeting-c16fa7d0-1666-4dde-8686-0a0bfe16...

@Nick Elniff  thanks a lot for your quick reply. I have used the following powershell script to set the global policy to by default set the external users as attendees

 

# setting up the session
Import-Module SkypeOnlineConnector
$userCredential = Get-Credential
$sfbSession = New-CsOnlineSession -Credential $userCredential
Import-PSSession $sfbSession

# global vars
$policyName='Global'

$policy = Get-CsTeamsMeetingPolicy -Identity $policyName
Write-Host "current policy"
$policy.DesignatedPresenterRoleMode
Set-CsTeamsMeetingPolicy -DesignatedPresenterRoleMode EveryoneInCompanyUserOverride -Identity $policyName
$policy = Get-CsTeamsMeetingPolicy -Identity $policyName
Write-Host "Updated policy"
$policy.DesignatedPresenterRoleMode
Write-Host "policy update completed"

 

Thanks

Tiklu

1 best response

Accepted Solutions
best response confirmed by tiklu ganguly (Brass Contributor)
Solution

@tiklu ganguly 

 

1. Is currently not possible - I would suggest upvoting this on UserVoice https://microsoftteams.uservoice.com/forums/599053-schools-and-universities/suggestions/40349089-org...

2. You can assign attendees the "Attendee" meeting role, which does not allow them to present.

3. The "Attendee" meeting role does not allow them to record the meeting

More info on the different meeting roles and their abilities can be found here - https://support.microsoft.com/en-us/office/roles-in-a-teams-meeting-c16fa7d0-1666-4dde-8686-0a0bfe16...

View solution in original post