Skip to content

Commit 41aeb46

Browse files
authored
Create Remove-CsTeamsPersonalAttendantPolicy.md
1 parent 0a5a767 commit 41aeb46

File tree

1 file changed

+123
-0
lines changed

1 file changed

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

0 commit comments

Comments
 (0)