Skip to content

Commit 80fea2f

Browse files
authored
Update New-CsTeamsRecordingAndTranscriptionLocalizationCustomMessage.md
1 parent b52577d commit 80fea2f

File tree

1 file changed

+17
-15
lines changed

1 file changed

+17
-15
lines changed

teams/teams-ps/MicrosoftTeams/New-CsTeamsRecordingAndTranscriptionLocalizationCustomMessage.md

Lines changed: 17 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -25,17 +25,19 @@ New-CsTeamsRecordingAndTranscriptionLocalizationCustomMessage
2525

2626
## DESCRIPTION
2727
The strings defined by this command is used for display after recording or transcription is started in a meeting. Based on the different scenarios when recording or transcription is enabled, we provide different keys for customization, as detailed below.
28-
These strings will not take effect immediately after being created; they need to be associated with other configurations and policies.
29-
30-
31-
| key name | description |
32-
| ---------|-------------|
33-
| initiatorImplicit | User is recording or transcription initiator, recording or transcription consent policy is off for the organizer.|
34-
| ParticipantImplicit | Others in meeting or calling turns on the recording or transcription, recording or transcription consent policy is off for the organizer.|
35-
| initiatorExplicit | User is recording or transcription initiator, recording or transcription consent policy is on for the organizer.|
36-
| ParticipantExplicitRequested | Others in meeting or calling turns on the recording or transcription, recording or transcription consent policy is on for the organizer. Current consent state is required the attendee to give the consent to recording and transcription |
37-
| ParticipantExplicitProvided | Others in meeting or calling turns on the recording or transcription, recording or transcription consent policy is on for the organizer. Current consent state is attendee has given the consent to recording and transcription |
38-
| agreementDialogue | Others in meeting or calling turns on the recording or transcription, recording or transcription consent policy is on for the organizer. User clicks the mute, share screen or turn on camera, then a confirm dialog will show to the user.|
28+
These strings will not take effect immediately after being created; they need to be associated with other configurations and policies. Followings are the keys we support.
29+
### InitiatorImplicit
30+
User is recording or transcription initiator, recording or transcription consent policy is off for the organizer.
31+
### ParticipantImplicit
32+
Others in meeting or calling turns on the recording or transcription, recording or transcription consent policy is off for the organizer.
33+
### InitiatorExplicit
34+
User is recording or transcription initiator, recording or transcription consent policy is on for the organizer.
35+
### ParticipantExplicitRequested
36+
Others in meeting or calling turns on the recording or transcription, recording or transcription consent policy is on for the organizer. Current consent state is required the attendee to give the consent to recording and transcription.
37+
### ParticipantExplicitProvided
38+
Others in meeting or calling turns on the recording or transcription, recording or transcription consent policy is on for the organizer. Current consent state is attendee has given the consent to recording and transcription.
39+
### AgreementDialogue
40+
Others in meeting or calling turns on the recording or transcription, recording or transcription consent policy is on for the organizer. User clicks the mute, share screen or turn on camera, then a confirm dialog will show to the user.
3941

4042
In most cases, we directly use the custom string to overwrite the original string content. For example, under normal circumstances, when the meeting organizer starts recording, the prompt shown to regular participants is "Started by XXX. By attending this meeting, you agree to being included." If you set the ParticipantImplicit string to "This meeting will be recorded." and successfully apply it to the organizer, then regular participants will see: "Started by XXX. This meeting will be recorded."
4143

@@ -47,13 +49,13 @@ Please refer to the documentation of CsTeamsRecordingAndTranscriptionCustomMessa
4749
## EXAMPLES
4850

4951
### Example 1
50-
```powershell
52+
```
5153
PS C:\> New-CsTeamsRecordingAndTranscriptionLocalizationCustomMessage -Language "en-US" -InitiatorImplicit "This call is being recorded." -ParticipantImplicit "This call is being recorded."
5254
```
5355
The command shown in Example 1 created a new set of custom message in en-US, it defined 2 scenarios, InitiatorImplicit and ParticipantImplicit.
5456

5557
### Example 2
56-
```powershell
58+
```
5759
PS C:\> New-CsTeamsRecordingAndTranscriptionLocalizationCustomMessage -Language "en-US" -initiatorExplicit "<empty>" -ParticipantExplicitProvided "<empty>"
5860
```
5961
**<empty>** is a keyword for clean the default message. The command shown in Example 2 will create a void message to override the default message of initiatorExplicit and ParticipantExplicitProvided scenarios.
@@ -64,8 +66,8 @@ PS C:\> New-CsTeamsRecordingAndTranscriptionLocalizationCustomMessage -Language
6466
### -Language
6567
Define language of the message set. In a meeting, if the organizer has applied a custom message, all participants will use the organizer’s policy. If meeting participants are from different countries and regions, then when recording or transcription is enabled, the prompt content depends on whether the organizer has customized the message for the language currently used by each participant. For example, if A is the meeting organizer and the policy applied to A defines messages in English and French, and B, C, and D use English, Chinese, and French as their Teams languages respectively, then B and D will see the customized prompt, while C will only see the default prompt.
6668

67-
### -initiatorImplicit
68-
With **-ParticipantImplicit**,**-initiatorExplicit**,**-ParticipantExplicitRequested**,**-ParticipantExplicitProvided**,**-agreementDialogue**, as mentioned on above tables, they represent different user scenarios.
69+
### -InitiatorImplicit
70+
With **-ParticipantImplicit**,**-InitiatorExplicit**,**-ParticipantExplicitRequested**,**-ParticipantExplicitProvided**,**-AgreementDialogue**, as mentioned on above tables, they represent different user scenarios.
6971

7072
## RELATED LINKS
7173
[New-CsTeamsRecordingAndTranscriptionCustomMessage](https://learn.microsoft.com/powershell/module/microsoftteams/new-CsTeamsRecordingAndTranscriptionCustomMessage)

0 commit comments

Comments
 (0)