Skip to content

Commit c999e49

Browse files
authored
Create Remove-CsTeamsPersonalAttendantPolicy.md
1 parent 7d3dc12 commit c999e49

File tree

1 file changed

+118
-0
lines changed

1 file changed

+118
-0
lines changed
Lines changed: 118 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,118 @@
1+
---
2+
applicable: Microsoft Teams
3+
author: juliiva
4+
external help file: Microsoft.Rtc.Management.dll-Help.xml
5+
Locale: en-US
6+
manager: jomarque
7+
Module Name: MicrosoftTeams
8+
ms.author: juliiva
9+
online version: https://learn.microsoft.com/powershell/module/microsoftteams/remove-csteamspersonalattendantpolicy
10+
schema: 2.0.0
11+
title: Remove-CsTeamsPersonalAttendantPolicy
12+
---
13+
14+
# Remove-CsTeamsPersonalAttendantPolicy
15+
16+
## SYNOPSIS
17+
18+
**Limited Preview:** Functionality described in this document is currently in limited preview and only authorized organizations have access.
19+
20+
Use this cmdlet to remove an existing instance of a Teams Personal Attendant Policy or reset the Global policy instance to the default values.
21+
22+
## SYNTAX
23+
24+
```
25+
Remove-CsTeamsPersonalAttendantPolicy -Identity <string> [-WhatIf] [-Confirm] [<CommonParameters>]
26+
```
27+
28+
## DESCRIPTION
29+
This cmdlet removes an existing Teams Personal Attendant Policy instance or resets the Global policy instance to the default values.
30+
31+
## EXAMPLES
32+
33+
### Example 1
34+
```
35+
Remove-CsTeamsPersonalAttendantPolicy -Identity SalesPersonalAttendantPolicy
36+
```
37+
38+
This example removes the Teams Personal Attendant Policy with identity SalesPersonalAttendantPolicy
39+
40+
### Example 2
41+
```
42+
Remove-CsTeamsPersonalAttendantPolicy -Identity Global
43+
```
44+
45+
This example resets the Global Personal Attendant Policy instance to the default values.
46+
47+
## PARAMETERS
48+
49+
### -Identity
50+
The Identity parameter is the unique identifier of the Teams Personal Attendant Policy instance to remove or reset.
51+
52+
```yaml
53+
Type: String
54+
Parameter Sets: (All)
55+
Aliases:
56+
57+
Required: True
58+
Position: Named
59+
Default value: None
60+
Accept pipeline input: True (ByPropertyName)
61+
Accept wildcard characters: False
62+
```
63+
64+
### -WhatIf
65+
Shows what would happen if the cmdlet runs.
66+
The cmdlet is not run.
67+
68+
```yaml
69+
Type: SwitchParameter
70+
Parameter Sets: (All)
71+
Aliases: wi
72+
73+
Required: False
74+
Position: Named
75+
Default value: None
76+
Accept pipeline input: False
77+
Accept wildcard characters: False
78+
```
79+
80+
### -Confirm
81+
Prompts you for confirmation before running the cmdlet.
82+
83+
```yaml
84+
Type: SwitchParameter
85+
Parameter Sets: (All)
86+
Aliases: cf
87+
88+
Required: False
89+
Position: Named
90+
Default value: None
91+
Accept pipeline input: False
92+
Accept wildcard characters: False
93+
```
94+
95+
### CommonParameters
96+
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).
97+
98+
## INPUTS
99+
100+
### None
101+
102+
## OUTPUTS
103+
104+
### System.Object
105+
106+
## NOTES
107+
108+
The cmdlet is available in Teams PowerShell module 7.2.1-preview or later.
109+
110+
## RELATED LINKS
111+
112+
[New-CsTeamsPersonalAttendantPolicy](./new-csteamspersonalattendantpolicy.md)
113+
114+
[Get-CsTeamsPersonalAttendantPolicy](./get-csteamspersonalattendantpolicy.md)
115+
116+
[Set-CsTeamsPersonalAttendantPolicy](./set-csteamspersonalattendantpolicy.md)
117+
118+
[Grant-CsTeamsPersonalAttendantPolicy](./grant-csteamspersonalattendantpolicy.md)

0 commit comments

Comments
 (0)