Skip to content

Commit ddd9a53

Browse files
committed
Minor cleanup
1 parent 8e28c38 commit ddd9a53

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

documentation/Get-PnPAzureADGroupMember.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ title: Get-PnPAzureADGroupMember
1515

1616
* Microsoft Graph API : One of Directory.Read.All, Directory.ReadWrite.All, Group.Read.All, Group.ReadWrite.All, GroupMember.Read.All, GroupMember.ReadWrite.All, User.Read.All, User.ReadWrite.All
1717

18-
Gets members of a particular Azure Active Directory group. This can be a security, distribution or Microsoft 365 group.
18+
Gets members of a particular Entra ID group. This can be a security, distribution or Microsoft 365 group.
1919

2020
## SYNTAX
2121

@@ -25,7 +25,7 @@ Get-PnPAzureADGroupMember -Identity <AzureADGroupPipeBind> [-Connection <PnPConn
2525

2626
## DESCRIPTION
2727

28-
Allows to list members from given Azure Active Directory group. This can be a security, distribution or Microsoft 365 group.
28+
Allows to list members from given Entra ID group. This can be a security, distribution or Microsoft 365 group.
2929

3030
## EXAMPLES
3131

@@ -34,26 +34,26 @@ Allows to list members from given Azure Active Directory group. This can be a se
3434
Get-PnPAzureADGroupMember -Identity $groupId
3535
```
3636

37-
Retrieves all the direct members of a specific Azure Active Directory group based on its ID.
37+
Retrieves all the direct members of a specific Entra ID group based on its ID.
3838

3939
### EXAMPLE 2
4040
```powershell
4141
Get-PnPAzureADGroupMember -Identity $group
4242
```
4343

44-
Retrieves all the direct members of a specific Azure Active Directory group based on the group's object instance.
44+
Retrieves all the direct members of a specific Entra ID group based on the group's object instance.
4545

4646
### EXAMPLE 3
4747
```powershell
4848
Get-PnPAzureADGroupMember -Identity $group -Transitive
4949
```
5050

51-
Retrieves all the direct and transitive members of a specific Azure Active Directory group based on the group's object instance.
51+
Retrieves all the direct and transitive members (members of groups inside groups) of a specific Entra ID group based on the group's object instance.
5252

5353
## PARAMETERS
5454

5555
### -Identity
56-
The Identity of the Azure Active Directory group.
56+
The Identity of the Entra ID group.
5757

5858
```yaml
5959
Type: AzureADGroupPipeBind
@@ -81,15 +81,15 @@ Accept wildcard characters: False
8181
```
8282
8383
### -Transitive
84-
The direct and transitive members of a group
84+
If provided, the direct and transitive members (members of groups in the group) of a group will be returned. If not provided, only the members directly assigned to the group will be returned.
8585
8686
```yaml
8787
Type: SwitchParameter
8888
Parameter Sets: (All)
8989

9090
Required: False
9191
Position: Named
92-
Default value: None
92+
Default value: False
9393
Accept pipeline input: False
9494
Accept wildcard characters: False
9595
```

0 commit comments

Comments
 (0)