Manage who can schedule webinars in Microsoft Teams
APPLIES TO: Meetings Webinars Town halls
Some features described in this article require Teams Premium.
Microsoft Teams offers webinars, a two-way interactive virtual event. As an admin, you can set up and manage who can schedule webinars in your organization.
For more information on how to plan for webinars in your org, see Plan for Teams webinars.
To learn more about the webinar experience for your users, see Get Started with Teams webinars.
Note
The webinar experience isn't available for Microsoft 365 GCC High or Microsoft 365 DoD.
Manage webinars using the Teams admin center
You can use the Teams admin center to set up and manage the webinar experience for your organization.
Turn webinars on or off
Follow these steps in the Teams admin center to turn webinars on or off:
- Open the Teams admin center.
- Select Meetings from the navigation pane.
- Under Meetings, select Events Policies.
- Either select an existing policy or create a new one.
- Toggle the Allow webinars setting On or Off.
- Select Save.
Manage webinars using PowerShell
You can use PowerShell to set up and manage the webinar experience for your organization.
To set up webinars, use the -AllowWebinars
parameter within the PowerShell CsTeamsEventsPolicy cmdlet.
The following table shows the behaviors of the settings for the -AllowWebinars
parameter:
Setting value | Behavior |
---|---|
Enabled | Users with this policy can create webinars. |
Disabled | Users with this policy can't create webinars. |
Before you can run these cmdlets, you must be connected to Microsoft Teams PowerShell. For more information, see Manage Teams with Microsoft Teams PowerShell.
For more information on PowerShell cmdlets for Teams webinars, see Related articles.
Turn on webinars
To turn on webinars, use the following script:
Set-CsTeamsEventsPolicy -Identity <policy name> -AllowWebinars Enabled
Turn off webinars
To turn off webinars, use the following script:
Set-CsTeamsEventsPolicy -Identity <policy name> -AllowWebinars Disabled
Manage whether organizers can schedule public or private webinars
You can use PowerShell to manage whether organizers can create public or private webinars:
To allow organizers to only create private webinars, use the following script:
Set-CsTeamsEventsPolicy -Identity <policy name> -EventAccessType EveryoneInCompanyExcludingGuests
To allow organizers to create public or private webinars, use the following script. Public webinars may include anonymous users:
Set-CsTeamsEventsPolicy -Identity <policy name> -EventAccessType Everyone
Related articles
- Issues that affect Teams webinars
- Plan for webinars
- Manage the registration form for webinars
- Manage email communications for webinars
- Meetings, webinars, and live events
- Attendance report for meetings and webinars in Microsoft Teams
- New-CsTeamsEventsPolicy
- Set-CsTeamsEventsPolicy
- Grant-CsTeamsEventsPolicy
- Get-CsTeamsEventsPolicy
- Remove-CsTeamsEventsPolicy