Forum Discussion

fgourrier's avatar
fgourrier
Copper Contributor
Aug 31, 2021
Solved

Webinaires - impossibilité d'ouvrir l'inscription aux externes

Bonjour à tous,

 

Je souhaite activer la possibilité de planifier et configurer des Webinaires dans le calendrier Teams.

J'ai le bon niveau de licence nécessaire et ai suivi la procédure pour activer cette fonctionnalité via l'interface d'administration et les commandes PowerShell.

 

La fonctionnalité apparaît bien néanmoins l'option "exigez l'inscription" reste grisée pour les externes.

 

J'ai refait la procédure indiquée sur le support suivant : https://docs.microsoft.com/fr-fr/microsoftteams/troubleshoot/meetings/issues-with-webinars?WT.mc_id=365AdminCSH_SupportCentral

 

Ai je oublié de configurer un paramètre ?

  • fgourrier Are you saying that you cannot see this option enabled?

     

    'For everyone'

     

    Are you using the Global policy or a custom policy? Have you verified that the policy you have updated is also assigned to your user/s?

6 Replies

  • You should verify these three:

    -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 users to join webinars.

    Microsoft Lists must be enabled for registration form
    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 (attendance report)
    Set-CsTeamsMeetingPolicy -AllowEngagementReport Enabled

    Could be a delay involved if all setting are OK. Then wait 24 hours and sign out and back in again.
    • fgourrier's avatar
      fgourrier
      Copper Contributor
      unfortunately this has not changed anything :-((
      • fgourrier Are you saying that you cannot see this option enabled?

         

        'For everyone'

         

        Are you using the Global policy or a custom policy? Have you verified that the policy you have updated is also assigned to your user/s?

    • fgourrier's avatar
      fgourrier
      Copper Contributor
      Thank you for your reply.
      I will reconfigure and do a response to indicate if this fixes or not.

Resources