Skip to content

Commit e9d0bfe

Browse files
authored
Create Get-CsTeamsPersonalAttendantPolicy.md
1 parent 453f1bb commit e9d0bfe

File tree

1 file changed

+111
-0
lines changed

1 file changed

+111
-0
lines changed
Lines changed: 111 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,111 @@
1+
---
2+
external help file: Microsoft.Rtc.Management.dll-Help.xml
3+
online version: https://learn.microsoft.com/powershell/module/teams/get-csteamspersonalattendantpolicy
4+
applicable: Microsoft Teams
5+
title: Get-CsTeamsPersonalAttendantPolicy
6+
schema: 2.0.0
7+
author: juliiva
8+
ms.author: juliiva
9+
ms.reviewer:
10+
manager: jomarque
11+
---
12+
13+
# Get-CsTeamsPersonalAttendantPolicy
14+
15+
## SYNOPSIS
16+
17+
**Limited Preview:** Functionality described in this document is currently in limited preview and only authorized organizations have access.
18+
19+
Returns information about the Teams personal attendant policies configured for use in your organization.
20+
Teams personal attendant policies help determine which users are able to use personal attendant and its functionalities within Microsoft Teams.
21+
22+
## SYNTAX
23+
24+
### Identity (Default)
25+
```powershell
26+
Get-CsTeamsPersonalAttendantPolicy [-Identity <string>] [<CommonParameters>]
27+
```
28+
29+
### Filter
30+
```powershell
31+
Get-CsTeamsPersonalAttendantPolicy [-Filter <string>] [<CommonParameters>]
32+
```
33+
34+
## DESCRIPTION
35+
36+
Returns information about the Teams personal attendant policies configured for use in your organization.
37+
Teams personal attendant policies help determine which users are able to use personal attendant and its functionalities within Microsoft Teams.
38+
39+
## EXAMPLES
40+
41+
### Example 1
42+
```powershell
43+
Get-CsTeamsPersonalAttendantPolicy -Identity SalesPersonalAttendantPolicy
44+
```
45+
46+
Retrieves the personal attendant policy with the Identity "SalesPersonalAttendantPolicy".
47+
48+
### Example 2
49+
```powershell
50+
Get-CsTeamsPersonalAttendantPolicy -Filter "tag:Sales*"
51+
```
52+
53+
Retrieves the personal attendant policies with Identity starting with Sales.
54+
55+
## PARAMETERS
56+
57+
### -Identity
58+
Specify the TeamsPersonalAttendantPolicy that you would like to retrieve.
59+
60+
```yaml
61+
Type: String
62+
Parameter Sets: (All)
63+
Aliases:
64+
65+
Required: False
66+
Position: Named
67+
Default value: None
68+
Accept pipeline input: False
69+
Accept wildcard characters: False
70+
```
71+
72+
### -Filter
73+
Enables you to use wildcard characters when indicating the policy (or policies) to be returned.
74+
To return a collection of all the per-user policies, use this syntax: -Filter "tag:*".
75+
76+
```yaml
77+
Type: String
78+
Parameter Sets: (All)
79+
Aliases:
80+
81+
Required: False
82+
Position: Named
83+
Default value: None
84+
Accept pipeline input: False
85+
Accept wildcard characters: False
86+
```
87+
88+
### CommonParameters
89+
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).
90+
91+
## INPUTS
92+
93+
### None
94+
95+
## OUTPUTS
96+
97+
### System.Object
98+
99+
## NOTES
100+
101+
The cmdlet is available in Teams PowerShell module 7.2.1-preview or later.
102+
103+
## RELATED LINKS
104+
105+
[New-CsTeamsPersonalAttendantPolicy](./new-csteamspersonalattendantpolicy.md)
106+
107+
[Set-CsTeamsPersonalAttendantPolicy](./set-csteamspersonalattendantpolicy.md)
108+
109+
[Grant-CsTeamsPersonalAttendantPolicy](./grant-csteamspersonalattendantpolicy.md)
110+
111+
[Remove-CsTeamsPersonalAttendantPolicy](./remove-csteamspersonalattendantpolicy.md)

0 commit comments

Comments
 (0)