Skip to content

Commit 9ff8805

Browse files
authored
Create Get-GroupPolicyAssignmentConflict.md
Adding new documentation for command Get-GroupPolicyAssignmentConflict related to GPA Adoption project from IC3 Tenant Policy team.
1 parent 8dbf029 commit 9ff8805

File tree

1 file changed

+81
-0
lines changed

1 file changed

+81
-0
lines changed
Lines changed: 81 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,81 @@
1+
---
2+
applicable: Microsoft Teams
3+
external help file: Microsoft.Teams.Policy.Administration.Cmdlets.Core.dll-Help.xml
4+
Module Name: Microsoft.Teams.Policy.Administration.Cmdlets.Core
5+
online version:
6+
schema: 2.0.0
7+
title: Get-GroupPolicyAssignmentConflict
8+
---
9+
10+
# Get-GroupPolicyAssignmentConflict
11+
12+
## SYNOPSIS
13+
As an admin, you can get the existing conflicts for a particular group policy assignments which causes it not to be effective for some users.
14+
15+
## SYNTAX
16+
17+
```
18+
Get-GroupPolicyAssignmentConflict -GroupId <String> -PolicyType <String>
19+
[<CommonParameters>]
20+
```
21+
22+
## DESCRIPTION
23+
As an admin, you can get the existing conflicts for a particular group policy assignments which causes it not to be effective for some users, providing the group id and policy type of the assignment. This will return a list of users in where the group policy assignment is not effective due a direct assignment or other group policy assignment that is taking effect on it.
24+
25+
**This is only applicable for tenants who have activated the new features related to group policy assignment adoption.**
26+
27+
## EXAMPLES
28+
29+
### Example 1
30+
```powershell
31+
PS C:\> Get-GroupPolicyAssignmentConflict -GroupId cde9a331-5bf8-415c-990c-19838b0d898a -PolicyType TeamsCallingPolicy
32+
```
33+
34+
In this example, the Get-GroupPolicyAssignmentConflict cmdlet is used to get all the possible conflicts that the group policy assignment in TeamsCallingPolicy applied for group cde9a331-5bf8-415c-990c-19838b0d898a could have with others assignments.
35+
36+
## PARAMETERS
37+
38+
### -GroupId
39+
Group id of the group policy assignment from which the cmdlet will look for conflicts.
40+
41+
42+
```yaml
43+
Type: String
44+
Parameter Sets: (All)
45+
Aliases:
46+
47+
Required: True
48+
Position: Named
49+
Default value: None
50+
Accept pipeline input: False
51+
Accept wildcard characters: False
52+
```
53+
54+
### -PolicyType
55+
Policy type of the group policy assignment from which the cmdlet will look for conflicts.
56+
57+
```yaml
58+
Type: String
59+
Parameter Sets: (All)
60+
Aliases:
61+
62+
Required: True
63+
Position: Named
64+
Default value: None
65+
Accept pipeline input: False
66+
Accept wildcard characters: False
67+
```
68+
69+
### CommonParameters
70+
This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216).
71+
72+
## INPUTS
73+
74+
### None
75+
76+
## OUTPUTS
77+
78+
### System.Object
79+
## NOTES
80+
81+
## RELATED LINKS

0 commit comments

Comments
 (0)