Skip to content

Commit 7f50080

Browse files
authored
Create New-CsTeamsCustomBannerText
1 parent bf9693c commit 7f50080

File tree

1 file changed

+96
-0
lines changed

1 file changed

+96
-0
lines changed
Lines changed: 96 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,96 @@
1+
---
2+
Module Name: MicrosoftTeams
3+
title: New-CsTeamsCustomBannerText
4+
author: saleens7
5+
ms.author: wblocker
6+
online version: https://learn.microsoft.com/powershell/module/teams/New-CsTeamsCustomBannerText
7+
schema: 2.0.0
8+
---
9+
10+
# New-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+
New-CsTeamsCustomBannerText [[-Id] <Guid>] [<CommonParameters>]
21+
```
22+
23+
## DESCRIPTION
24+
25+
Creates a single instance of a custom banner text.
26+
27+
## EXAMPLES
28+
29+
### Example 1
30+
31+
```powershell
32+
PS C:\> New-CsTeamsCustomBannerText -Identity CustomText
33+
```
34+
35+
Creates an instance of TeamsCustomBannerText with the name CustomText.
36+
37+
## PARAMETERS
38+
39+
### -Id
40+
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.
41+
42+
```yaml
43+
Type: Guid
44+
Parameter Sets: Identity
45+
Aliases:
46+
Applicable: Microsoft Teams
47+
Required: False
48+
Position: 1
49+
Default value: None
50+
Accept pipeline input: False
51+
Accept wildcard characters: False
52+
```
53+
54+
### -Text
55+
The text that the tenant admin would like to set in policy.
56+
57+
```yaml
58+
Type: String
59+
Position: Named
60+
Default value: None
61+
Accept pipeline input: False
62+
Accept wildcard characters: False
63+
```
64+
65+
### -Description
66+
The description that the tenant admin would like to set to identify what this text represents.
67+
68+
```yaml
69+
Type: String
70+
Position: Named
71+
Default value: None
72+
Accept pipeline input: False
73+
Accept wildcard characters: False
74+
```
75+
76+
77+
### CommonParameters
78+
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).
79+
80+
81+
## INPUTS
82+
83+
### None
84+
85+
## OUTPUTS
86+
87+
### System.Object
88+
## NOTES
89+
90+
## RELATED LINKS
91+
92+
[Set-CsTeamsCustomBannerText](Set-CsTeamsCustomBannerText.md)
93+
94+
[New-CsTeamsCustomBannerText](New-CsTeamsCustomBannerText.md)
95+
96+
[Remove-CsTeamsCustomBannerText](Remove-CsTeamsCustomBannerText.md)

0 commit comments

Comments
 (0)