Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
69 changes: 69 additions & 0 deletions teams/teams-ps/teams/New-CsTeamsEventsPolicy.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ external help file: MicrosoftTeams-help.xml
Module Name: MicrosoftTeams
online version: https://learn.microsoft.com/powershell/module/teams/new-csteamseventspolicy
schema: 2.0.0
ms.date: 11/12/2024
---

# New-CsTeamsEventsPolicy
Expand All @@ -15,6 +16,8 @@ This cmdlet allows you to create a new TeamsEventsPolicy instance and set its pr

```
New-CsTeamsEventsPolicy [-Identity] <String> [-AllowWebinars <String>] [-AllowTownhalls <String>] [-AllowEmailEditing <String>] [-Description <String>]
[-RecordingForTownhall <String>] [-RecordingForWebinar <String>]
[-TranscriptionForTownhall <String>] [-TranscriptionForWebinar <String>]
[-UseMicrosoftECDN <String>] [-EventAccessType <String>] [-WhatIf] [-Confirm] [<CommonParameters>]
```

Expand Down Expand Up @@ -186,6 +189,72 @@ Accept pipeline input: False
Accept wildcard characters: False
```

### -RecordingForTownhall
Determines whether recording is allowed in a user's townhall.
Possible values are:
- **Enabled**: Allow recording in user's townhalls.
- **Disabled**: Prohibit recording in user's townhalls.
```yaml
Type: String
Parameter Sets: (All)
Aliases:

Required: False
Position: Named
Default value: Enabled
Accept pipeline input: False
Accept wildcard characters: False
```
### -RecordingForWebinar
Determines whether recording is allowed in a user's webinar.
Possible values are:
- **Enabled**: Allow recording in user's webinars.
- **Disabled**: Prohibit recording in user's webinars.
```yaml
Type: String
Parameter Sets: (All)
Aliases:

Required: False
Position: Named
Default value: Enabled
Accept pipeline input: False
Accept wildcard characters: False
```
### -TranscriptionForTownhall
Determines whether transcriptions are allowed in a user's townhall.
Possible values are:
- **Enabled**: Allow transcriptions in user's townhalls.
- **Disabled**: Prohibit transcriptions in user's townhalls.
```yaml
Type: String
Parameter Sets: (All)
Aliases:

Required: False
Position: Named
Default value: Enabled
Accept pipeline input: False
Accept wildcard characters: False
```
### -TranscriptionForWebinar
Determines whether transcriptions are allowed in a user's webinar.
Possible values are:
- **Enabled**: Allow transcriptions in user's webinars.
- **Disabled**: Prohibit transcriptions in user's webinars.
```yaml
Type: String
Parameter Sets: (All)
Aliases:

Required: False
Position: Named
Default value: Enabled
Accept pipeline input: False
Accept wildcard characters: False
```


### -Confirm
The Confirm switch does not work with this cmdlet.

Expand Down
79 changes: 79 additions & 0 deletions teams/teams-ps/teams/Set-CsTeamsEventsPolicy.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ external help file: MicrosoftTeams-help.xml
Module Name: MicrosoftTeams
online version: https://learn.microsoft.com/powershell/module/teams/set-csteamseventspolicy
schema: 2.0.0
ms.date: 11/12/2024
---

# Set-CsTeamsEventsPolicy
Expand All @@ -18,6 +19,8 @@ Set-CsTeamsEventsPolicy [-AllowWebinars <String>] [-EventAccessType <String>] [-
[-AllowEmailEditing <String>] [-AllowedQuestionTypesInRegistrationForm <String>]
[-AllowEventIntegrations <Boolean>] [-AllowedWebinarTypesForRecordingPublish <String>]
[-AllowedTownhallTypesForRecordingPublish <String>] [-TownhallChatExperience <String>] [-Description <String>]
[-RecordingForTownhall <String>] [-RecordingForWebinar <String>]
[-TranscriptionForTownhall <String>] [-TranscriptionForWebinar <String>]
[-UseMicrosoftECDN <Boolean>]
[-Identity] <String> [-Force] [-WhatIf] [-Confirm] [<CommonParameters>]
```
Expand Down Expand Up @@ -300,6 +303,82 @@ Accept pipeline input: False
Accept wildcard characters: False
```

### -RecordingForTownhall
Determines whether recording is allowed in a user's townhall.

Possible values are:
- **Enabled**: Allow recording in user's townhalls.
- **Disabled**: Prohibit recording in user's townhalls.

```yaml
Type: String
Parameter Sets: (All)
Aliases:

Required: False
Position: Named
Default value: Enabled
Accept pipeline input: False
Accept wildcard characters: False
```

### -RecordingForWebinar
Determines whether recording is allowed in a user's webinar.

Possible values are:
- **Enabled**: Allow recording in user's webinars.
- **Disabled**: Prohibit recording in user's webinars.

```yaml
Type: String
Parameter Sets: (All)
Aliases:

Required: False
Position: Named
Default value: Enabled
Accept pipeline input: False
Accept wildcard characters: False
```

### -TranscriptionForTownhall
Determines whether transcriptions are allowed in a user's townhall.

Possible values are:
- **Enabled**: Allow transcriptions in user's townhalls.
- **Disabled**: Prohibit transcriptions in user's townhalls.

```yaml
Type: String
Parameter Sets: (All)
Aliases:

Required: False
Position: Named
Default value: Enabled
Accept pipeline input: False
Accept wildcard characters: False
```

### -TranscriptionForWebinar
Determines whether transcriptions are allowed in a user's webinar.

Possible values are:
- **Enabled**: Allow transcriptions in user's webinars.
- **Disabled**: Prohibit transcriptions in user's webinars.

```yaml
Type: String
Parameter Sets: (All)
Aliases:

Required: False
Position: Named
Default value: Enabled
Accept pipeline input: False
Accept wildcard characters: False
```

### -Confirm
The Confirm switch does not work with this cmdlet.

Expand Down