Skip to content

Commit 8e8ba6d

Browse files
authored
Update Set-CsTeamsRecordingAndTranscriptionCustomMessage.md
1 parent d7a110e commit 8e8ba6d

File tree

1 file changed

+33
-0
lines changed

1 file changed

+33
-0
lines changed

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

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,18 +27,51 @@ Set-CsTeamsRecordingAndTranscriptionCustomMessage
2727
[<CommonParameters>]
2828
```
2929

30+
## DESCRIPTION
31+
3032
This command modifies the custom recording and transcription prompt messages created using the New-CsTeamsRecordingAndTranscriptionCustomMessage command. Please refer directly to the documentation for New-CsTeamsRecordingAndTranscriptionCustomMessage to learn how to use this command.
3133
The only difference is that when using the Set command, you must specify the Id to indicate which specific TeamsRecordingAndTranscriptionCustomMessage setting you want to modify.
3234

35+
## EXAMPLES
36+
37+
### Example 1
38+
```powershell
39+
PS C:\> Set-CsTeamsRecordingAndTranscriptionCustomMessage -Id "39dc3ede-c80e-4f19-9153-417a65a1f144" -Description "Updated recording message policy"
40+
```
41+
42+
The command shown in Example 1 updates the description of an existing TeamsRecordingAndTranscriptionCustomMessage with the specified Id.
43+
3344
## Parameters
3445
### -Id
3546
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.
3647

3748
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.
3849

50+
```yaml
51+
Type: Guid
52+
Parameter Sets: (All)
53+
Aliases:
54+
Required: True
55+
Position: Named
56+
Default value: None
57+
Accept pipeline input: False
58+
Accept wildcard characters: False
59+
```
60+
3961
### -DESCRIPTION
4062
Add a description for CsTeamsRecordingAndTranscriptionCustomMessage.
4163
64+
```yaml
65+
Type: String
66+
Parameter Sets: (All)
67+
Aliases:
68+
Required: False
69+
Position: Named
70+
Default value: None
71+
Accept pipeline input: False
72+
Accept wildcard characters: False
73+
```
74+
4275
### -RecordingAndTranscriptionLocalizationCustomMessage
4376
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.
4477
```yaml

0 commit comments

Comments
 (0)