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
23 changes: 22 additions & 1 deletion teams/teams-ps/teams/New-CsTeamsCallingPolicy.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ New-CsTeamsCallingPolicy [-Identity] <string> [-Description <string>] [-AllowPri
[-BusyOnBusyEnabledType <string>] [-MusicOnHoldEnabledType <string>] [-AllowCloudRecordingForCalls <boolean>]
[-AllowTranscriptionForCalling <boolean>] [-PopoutForIncomingPstnCalls <string>] [-PopoutAppPathForIncomingPstnCalls <string>]
[-LiveCaptionsEnabledTypeForCalling <string>] [-AutoAnswerEnabledType <string>] [-SpamFilteringEnabledType <string>]
[-CallRecordingExpirationDays <long>] [-AllowCallRedirect <string>] [-EnableWebPstnMediaBypass <Boolean>]
[-CallRecordingExpirationDays <long>] [-AllowCallRedirect <string>] [-Copilot <string>] [-EnableWebPstnMediaBypass <Boolean>]
[-InboundPstnCallRoutingTreatment <string>] [-InboundFederatedCallRoutingTreatment <string>] [-Force] [-WhatIf] [-Confirm] [<CommonParameters>]
```

Expand Down Expand Up @@ -308,6 +308,27 @@ Accept pipeline input: False
Accept wildcard characters: False
```

### -Copilot
Setting this parameter lets you control how Copilot is used during calls and if transcription is needed to be turned on and saved after the call.

Valid options are:
- Enabled: Copilot can work with or without transcription during calls. This is the default value.
- EnabledWithTranscript: Copilot will only work when transcription is enabled during calls.
- Disabled: Copilot is disabled for calls.

```yaml
Type: String
Parameter Sets: (All)
Aliases:
Applicable: Microsoft Teams

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

### -EnableWebPstnMediaBypass
Determines if MediaBypass is enabled for PSTN calls on specified Web platforms.

Expand Down
22 changes: 22 additions & 0 deletions teams/teams-ps/teams/Set-CsTeamsCallingPolicy.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@ Set-CsTeamsCallingPolicy [-Identity] <string>
[-CallRecordingExpirationDays <long>]
[-Confirm]
[-Force]
[-Copilot] <string>]
[-InboundFederatedCallRoutingTreatment <string>]
[-InboundPstnCallRoutingTreatment <string>]
[-LiveCaptionsEnabledTypeForCalling <string>]
Expand Down Expand Up @@ -313,6 +314,27 @@ Accept pipeline input: False
Accept wildcard characters: False
```

### -Copilot
Setting this parameter lets you control how Copilot is used during calls and if transcription is needed to be turned on and saved after the call.

Valid options are:
- Enabled: Copilot can work with or without transcription during calls. This is the default value.
- EnabledWithTranscript: Copilot will only work when transcription is enabled during calls.
- Disabled: Copilot is disabled for calls.

```yaml
Type: String
Parameter Sets: (All)
Aliases:
Applicable: Microsoft Teams

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

### -Identity
Name of the policy instance being created.

Expand Down