Skip to content

Commit bf9693c

Browse files
authored
Create Set-CsTeamsCustomBannerText
1 parent 6804a45 commit bf9693c

File tree

1 file changed

+93
-0
lines changed

1 file changed

+93
-0
lines changed
Lines changed: 93 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,93 @@
1+
---
2+
Module Name: MicrosoftTeams
3+
title: Set-CsTeamsCustomBannerText
4+
author: saleens7
5+
ms.author: wblocker
6+
online version: https://learn.microsoft.com/powershell/module/teams/Set-CsTeamsCustomBannerText
7+
schema: 2.0.0
8+
---
9+
10+
# Set-CsTeamsCustomBannerText
11+
12+
## SYNOPSIS
13+
14+
Enables administrators to configure a custom text on the banner displayed when compliance recording bots start recording the call.
15+
16+
## SYNTAX
17+
18+
### Identity (Default)
19+
```
20+
Set-CsTeamsCustomBannerText [[-Id] <Guid>] [<CommonParameters>]
21+
```
22+
23+
## DESCRIPTION
24+
25+
Updates a single instance of custom banner text.
26+
27+
## EXAMPLES
28+
29+
### Example 1
30+
PS C:\> Set-CsTeamsCustomBannerText -Identity CustomText
31+
```
32+
33+
Sets the properties of the CustomText instance of TeamsCustomBannerText.
34+
35+
## PARAMETERS
36+
37+
### -Id
38+
The Identity of the CustomBannerText. You do not need to provide an Id as the backend will generate it for you. However if you wish to provide your own ID, you can provide your own GUID. Please note that you have to provide a unique ID for every CsTeamsCustomBannerText you create.
39+
40+
```yaml
41+
Type: Guid
42+
Parameter Sets: Identity
43+
Aliases:
44+
Applicable: Microsoft Teams
45+
Required: False
46+
Position: 1
47+
Default value: None
48+
Accept pipeline input: False
49+
Accept wildcard characters: False
50+
```
51+
52+
### -Text
53+
The text that the tenant admin would like to set in policy.
54+
55+
```yaml
56+
Type: String
57+
Position: Named
58+
Default value: None
59+
Accept pipeline input: False
60+
Accept wildcard characters: False
61+
```
62+
63+
### -Description
64+
The description that the tenant admin would like to set to identify what this text represents.
65+
66+
```yaml
67+
Type: String
68+
Position: Named
69+
Default value: None
70+
Accept pipeline input: False
71+
Accept wildcard characters: False
72+
```
73+
74+
### CommonParameters
75+
This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216).
76+
77+
78+
## INPUTS
79+
80+
### None
81+
82+
## OUTPUTS
83+
84+
### System.Object
85+
## NOTES
86+
87+
## RELATED LINKS
88+
89+
[Set-CsTeamsCustomBannerText](Set-CsTeamsCustomBannerText.md)
90+
91+
[New-CsTeamsCustomBannerText](New-CsTeamsCustomBannerText.md)
92+
93+
[Remove-CsTeamsCustomBannerText](Remove-CsTeamsCustomBannerText.md)

0 commit comments

Comments
 (0)