Skip to content

Commit 31a4b39

Browse files
authored
Create Get-CsTeamsPersonalAttendantPolicy.md
1 parent b3db51a commit 31a4b39

File tree

1 file changed

+114
-0
lines changed

1 file changed

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

0 commit comments

Comments
 (0)