Manage VOD publishing for webinars and town halls
APPLIES TO: Meetings Webinars Town halls
Video on demand (VOD) for Microsoft Teams events allows webinar and town hall organizers to quickly publish and share event recordings. When organizers record these events, the recordings are uploaded to OneDrive. Once published, all attendees automatically receive an email with a link to view the recording. As an admin, you can manage which types of town halls and webinars organizers can publish recordings for.
For more information on publishing webinar and town halls for your users, see Manage webinar recordings in Microsoft Teams and Manage town hall recordings in Microsoft Teams.
Webinars
You can use the Teams admin center or PowerShell to manage VOD publishing permissions for webinars.
Note
Guests can't view private webinar recordings.
Note
The invite only option isn't supported for webinars.
The following table lists the values that you can set for webinar publishing permissions along with the corresponding behaviors:
Teams admin center value | PowerShell value | Behavior |
---|---|---|
Not allowed | None | Organizers with this policy can't publish any webinar recordings. |
Your organization | EveryoneInCompanyIncludingGuests | Organizers with this policy can only publish recordings for private webinars. These organizers can't publish any recordings for public webinars. |
Public | Everyone | This is the default. Organizers with this policy can publish any webinar recordings. |
Manage webinar VOD publishing permissions using the Teams admin center
You can use the Teams admin center To manage VOD publishing permissions for webinars in the Teams admin center, use the following steps:
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.
Choose one of the following values for Allowed webinar types for recordings:
- Not allowed
- Your organization
- Public
Select Save.
Manage webinar VOD publishing permissions using PowerShell
To manage VOD publishing permissions for webinars through PowerShell, use the -AllowedWebinarTypesForRecordingPublish
parameter within the CsTeamsEventsPolicy cmdlet.
To prevent organizers from publishing any webinar recordings, use the following script:
Set-CsTeamsEventsPolicy -Identity <policy name> -AllowedWebinarTypesForRecordingPublish None
To only allow organizers to publish private webinar recordings, use the following script:
Set-CsTeamsEventsPolicy -Identity <policy name> -AllowedWebinarTypesForRecordingPublish EveryoneInCompanyIncludingGuests
Town halls
You can use the Teams admin center or PowerShell to manage VOD publishing permissions for town halls.
The following table lists the values that you can set for town hall publishing permissions along with the corresponding behaviors:
Teams admin center value | PowerShell value | Behavior |
---|---|---|
Not allowed | None | Organizers with this policy can't publish any town hall recordings. |
Invite only | InviteOnly | Organizers with this policy can only publish recordings for invite-only town halls. These organizers can't publish any recordings for public town halls. |
Your organization | EveryoneInCompanyIncludingGuests | Organizers with this policy can only publish recordings for private and invite-only town halls. These organizers can't publish any recordings for public town halls. |
Public | Everyone | This is the default. Organizers with this policy can publish any town hall recordings. |
Manage town hall VOD publishing permissions using the Teams admin center
You can use the Teams admin center To manage VOD publishing permissions for webinars in the Teams admin center, use the following steps:
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.
Choose one of the following values for Allowed town hall types for recordings:
- Not allowed
- Invite only
- Your organization
- Public
Select Save.
Manage town hall VOD publishing permissions using PowerShell
To manage VOD publishing permissions for town halls, use the -AllowedTownhallTypesForRecordingPublish
parameter within the PowerShell CsTeamsEventsPolicy cmdlet.
To only allow organizers to publish invite-only town hall recordings, use the following script:
Set-CsTeamsEventsPolicy -Identity <policy name> -AllowedTownhallTypesForRecordingPublish InviteOnly
To prevent organizers from publishing any town hall recordings, use the following script:
Set-CsTeamsEventsPolicy -Identity <policy name> -AllowedTownhallTypesForRecordingPublish None
To only allow organizers to publish private and invite-only town hall recordings, use the following script:
Set-CsTeamsEventsPolicy -Identity <policy name> -AllowedTownhallTypesForRecordingPublish EveryoneInCompanyIncludingGuests