Skip to content

Commit f2e1bb4

Browse files
committed
Add blank lines to see if the build is happier
1 parent 0205f2b commit f2e1bb4

File tree

2 files changed

+23
-0
lines changed

2 files changed

+23
-0
lines changed

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

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ title: New-CsTeamsRecordingAndTranscriptionCustomMessage
1616
## SYNOPSIS
1717

1818
Create a concrete prompt message setting in multiple languages and multiple scenarios to be displayed to participants after recording or transcription has started.
19+
1920
## SYNTAX
2021

2122
```
@@ -27,6 +28,7 @@ New-CsTeamsRecordingAndTranscriptionCustomMessage
2728
```
2829

2930
## DESCRIPTION
31+
3032
The strings defined by this command is used for display after recording or transcription is started in a meeting.
3133
Based on the different scenarios when recording or transcription is enabled, we provide different keys for customization, as detailed below.
3234
These strings will not take effect immediately after being created; they need to be associated with other configurations and policies.
@@ -38,36 +40,49 @@ After this configuration is successfully completed, you can assign the generated
3840
## EXAMPLES
3941

4042
### Example 1
43+
4144
```powershell
4245
PS C:\> New-CsTeamsRecordingAndTranscriptionCustomMessage -Id '39dc3ede-c80e-4f19-9153-417a65a1f144'
4346
```
4447

4548
The command shown in Example 1 creates an in-memory instance of a CsTeamsRecordingAndTranscriptionCustomMessage with no content. It can be set to RecordingAndTranscriptionCustomMessageIdentifier but nothing will change.
4649

4750
### Example 2
51+
4852
```
4953
$en = New-CsTeamsRecordingAndTranscriptionLocalizationCustomMessage -Language "en-US" -InitiatorImplicit "This call is being recorded." -ParticipantImplicit "This call is being recorded."
5054
>> $zh = New-CsTeamsRecordingAndTranscriptionLocalizationCustomMessage -Language "zh-CN" -InitiatorExplicit "请注意,此通话正在录音。" -ParticipantExplicitRequested "此通话正在录音,我们将在得到您同意后再录制你的声音。"
5155
>> New-CsTeamsRecordingAndTranscriptionCustomMessage -Description "Multi languages record custom message" -RecordingAndTranscriptionLocalizationCustomMessage @($en, $zh)
5256
```
57+
5358
Example 2 demonstrates a complete case, defining the recording and transcription prompt messages that users see in English and Chinese under different scenarios.
59+
5460
If such policy applied to the meeting organizer, then:
61+
5562
- Current user is recording/transcription intiator, Teams language is English US", the meeting organizer doesn't enable consent recording/transcription, when current user start recording or transcript, he/she will see "This call is being recorded.".
63+
5664
- Current user is normal participant, Teams language is English US, the meeting organizer doesn't enable consent recording/transcription, when recording or transcript started, current user will see "This call is being recorded."
65+
5766
- Current user is recording/transcription intiator, Teams language is Chinese simplify, the meeting organizer enable the consent recording/transcription, when current user start recording or transcript, he/she will see "请注意,此通话正在录音。"
67+
5868
- Current user is normal participant, Teams language is Chinese simplify, the meeting organizer enable the consent recording/transcription,after someone started recording or transcription, he will see "此通话正在录音,我们将在得到您同意后再录制你的声音。"
5969

6070
## Parameters
71+
6172
### -Id
73+
6274
The ObjectId of the CsTeamsRecordingAndTranscriptionCustomMessage setting, By assigning the ID to the **RecordingAndTranscriptionCustomMessageIdentifier** field in the meeting policy or calling policy, you can associate the current custom prompt message configuration with a user group or individual users.
6375

6476
At the same time, when creating CsTeamsRecordingAndTranscriptionCustomMessage, it is not necessary to explicitly specify the ID; a GUID will be automatically generated and stored as the Id.
6577

6678
### -DESCRIPTION
79+
6780
Add a description for CsTeamsRecordingAndTranscriptionCustomMessage.
6881

6982
### -RecordingAndTranscriptionLocalizationCustomMessage
83+
7084
Set the specific recording and transcription prompt messages to be customized. The type is a list of TeamsRecordingAndTranscriptionLocalizationCustomMessage, with each element in the list representing a custom message for a particular language. For more information, please refer to New-CsTeamsRecordingAndTranscriptionLocalizationCustomMessage.
85+
7186
```yaml
7287
Type: TeamsRecordingAndTranscriptionLocalizationCustomMessage[]
7388
Parameter Sets: (All)
@@ -81,6 +96,7 @@ Accept wildcard characters: False
8196
```
8297
8398
## RELATED LINKS
99+
84100
[Set-CsTeamsRecordingAndTranscriptionCustomMessage](https://learn.microsoft.com/powershell/module/microsoftteams/set-CsTeamsRecordingAndTranscriptionCustomMessage)
85101
86102
[Get-CsTeamsRecordingAndTranscriptionCustomMessage](https://learn.microsoft.com/powershell/module/microsoftteams/Get-CsTeamsRecordingAndTranscriptionCustomMessage)

teams/teams-ps/MicrosoftTeams/Set-CsTeamsRecordingAndTranscriptionCustomMessage.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,14 +35,17 @@ The only difference is that when using the Set command, you must specify the Id
3535
## EXAMPLES
3636

3737
### Example 1
38+
3839
```powershell
3940
PS C:\> Set-CsTeamsRecordingAndTranscriptionCustomMessage -Id "39dc3ede-c80e-4f19-9153-417a65a1f144" -Description "Updated recording message policy"
4041
```
4142

4243
The command shown in Example 1 updates the description of an existing TeamsRecordingAndTranscriptionCustomMessage with the specified Id.
4344

4445
## Parameters
46+
4547
### -Id
48+
4649
The ObjectId of the CsTeamsRecordingAndTranscriptionCustomMessage setting, By assigning the ID to the **RecordingAndTranscriptionCustomMessageIdentifier** field in the meeting policy or calling policy, you can associate the current custom prompt message configuration with a user group or individual users.
4750

4851
At the same time, when creating CsTeamsRecordingAndTranscriptionCustomMessage, it is not necessary to explicitly specify the ID; a GUID will be automatically generated and stored as the Id.
@@ -59,6 +62,7 @@ Accept wildcard characters: False
5962
```
6063
6164
### -DESCRIPTION
65+
6266
Add a description for CsTeamsRecordingAndTranscriptionCustomMessage.
6367
6468
```yaml
@@ -73,7 +77,9 @@ Accept wildcard characters: False
7377
```
7478
7579
### -RecordingAndTranscriptionLocalizationCustomMessage
80+
7681
Set the specific recording and transcription prompt messages to be customized. The type is a list of TeamsRecordingAndTranscriptionLocalizationCustomMessage, with each element in the list representing a custom message for a particular language. For more information, please refer to New-CsTeamsRecordingAndTranscriptionLocalizationCustomMessage.
82+
7783
```yaml
7884
Type: TeamsRecordingAndTranscriptionLocalizationCustomMessage[]
7985
Parameter Sets: (All)
@@ -87,6 +93,7 @@ Accept wildcard characters: False
8793
```
8894
8995
## RELATED LINKS
96+
9097
[New-CsTeamsRecordingAndTranscriptionCustomMessage](https://learn.microsoft.com/powershell/module/microsoftteams/new-CsTeamsRecordingAndTranscriptionCustomMessage)
9198
9299
[Remove-CsTeamsRecordingAndTranscriptionCustomMessage](https://learn.microsoft.com/powershell/module/microsoftteams/remove-CsTeamsRecordingAndTranscriptionCustomMessage)

0 commit comments

Comments
 (0)