Skip to content

Commit 61fe517

Browse files
authored
Create Get-CsTeamsCustomBannerText
1 parent 7f50080 commit 61fe517

File tree

1 file changed

+81
-0
lines changed

1 file changed

+81
-0
lines changed
Lines changed: 81 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,81 @@
1+
---
2+
Module Name: MicrosoftTeams
3+
title: Get-CsTeamsCustomBannerText
4+
author: saleens7
5+
ms.author: wblocker
6+
online version: https://learn.microsoft.com/powershell/module/teams/Get-CsTeamsCustomBannerText
7+
schema: 2.0.0
8+
---
9+
10+
11+
# Get-CsTeamsCustomBannerText
12+
13+
## SYNOPSIS
14+
15+
Enables administrators to configure a custom text on the banner displayed when compliance recording bots start recording the call.
16+
17+
## SYNTAX
18+
19+
### Identity (Default)
20+
```
21+
Get-CsTeamsCustomBannerText [[-Identity] <String>] [<CommonParameters>]
22+
```
23+
24+
## DESCRIPTION
25+
26+
Returns all or a single instance of custom banner text(s).
27+
28+
29+
## EXAMPLES
30+
31+
### Example 1
32+
```powershell
33+
PS C:\> Get-CsTeamsCustomBannerText
34+
```
35+
36+
Gets the properties of all instances of the TeamsCustomBannerText.
37+
38+
### Example 2
39+
```powershell
40+
PS C:\> Get-CsTeamsCustomBannerText -Identity CustomText
41+
```
42+
43+
Gets the properties of the CustomText instance of TeamsCustomBannerText.
44+
45+
## PARAMETERS
46+
47+
### -Identity
48+
Policy instance name. Optional.
49+
50+
```yaml
51+
Type: String
52+
Parameter Sets: Identity
53+
Aliases:
54+
Applicable: Microsoft Teams
55+
Required: False
56+
Position: 1
57+
Default value: None
58+
Accept pipeline input: False
59+
Accept wildcard characters: False
60+
```
61+
62+
### CommonParameters
63+
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).
64+
65+
66+
## INPUTS
67+
68+
### None
69+
70+
## OUTPUTS
71+
72+
### System.Object
73+
## NOTES
74+
75+
## RELATED LINKS
76+
77+
[Set-CsTeamsCustomBannerText](Set-CsTeamsCustomBannerText.md)
78+
79+
[New-CsTeamsCustomBannerText](New-CsTeamsCustomBannerText.md)
80+
81+
[Remove-CsTeamsCustomBannerText](Remove-CsTeamsCustomBannerText.md)

0 commit comments

Comments
 (0)