Forum Discussion

HSVSIMON's avatar
HSVSIMON
Copper Contributor
Jun 04, 2021

Enable Require Registration: For everyone

Proper way to enable "Require registration: For everyone" when scheduling a new meeting.  I have been unable to find a way to activate this setting.

Thanks for any help!

  • HSVSIMON Hello, gonna add all the necessary config here.

     

    -AllowMeetingRegistration
    -WhoCanRegister
    -AllowPrivateMeetingScheduling
     
    To allow users in organization to schedule webinars:
    Set-CsTeamsMeetingPolicy -AllowMeetingRegistration $True
     
    To allow only users in organization to register for webinars:
    Set-CsTeamsMeetingPolicy -AllowPrivateMeetingScheduling $True
    Set-CsTeamsMeetingPolicy -WhoCanRegister EveryoneInCompany
     
    To allow anyone, including anonymous users, to register for webinars
    Set-CsTeamsMeetingPolicy -AllowPrivateMeetingScheduling $True
    Set-CsTeamsMeetingPolicy -WhoCanRegister Everyone
     
    Anonymous join must be enabled in Teams meeting settings for anonymous to join webinar.
     
    Microsoft Lists must be enabled
    Set-SPOTenant -DisablePersonalListCreation $false
     
    Teams view-only meeting experience if wanting to use overflow (when more than 1000).
    Set-CsTeamsMeetingPolicy -Identity Global -StreamingAttendeeMode Enabled
     
    Collect meeting attendance
    Set-CsTeamsMeetingPolicy -AllowEngagementReport Enabled
  • HSVSIMON Hello, gonna add all the necessary config here.

     

    -AllowMeetingRegistration
    -WhoCanRegister
    -AllowPrivateMeetingScheduling
     
    To allow users in organization to schedule webinars:
    Set-CsTeamsMeetingPolicy -AllowMeetingRegistration $True
     
    To allow only users in organization to register for webinars:
    Set-CsTeamsMeetingPolicy -AllowPrivateMeetingScheduling $True
    Set-CsTeamsMeetingPolicy -WhoCanRegister EveryoneInCompany
     
    To allow anyone, including anonymous users, to register for webinars
    Set-CsTeamsMeetingPolicy -AllowPrivateMeetingScheduling $True
    Set-CsTeamsMeetingPolicy -WhoCanRegister Everyone
     
    Anonymous join must be enabled in Teams meeting settings for anonymous to join webinar.
     
    Microsoft Lists must be enabled
    Set-SPOTenant -DisablePersonalListCreation $false
     
    Teams view-only meeting experience if wanting to use overflow (when more than 1000).
    Set-CsTeamsMeetingPolicy -Identity Global -StreamingAttendeeMode Enabled
     
    Collect meeting attendance
    Set-CsTeamsMeetingPolicy -AllowEngagementReport Enabled

Resources