Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Adding Transitive parameter to Get-PnPAzureADGroupMember #4799

Merged
merged 4 commits into from
Mar 22, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,7 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/).
- Added `Get-PnPMicrosoft365Roadmap` which allows retrieval of the Microsoft 365 Roadmap items [#4764](https://github.com/pnp/powershell/pull/4764)
- Added `-Name` parameter to `Add-PnPApplicationCustomizer` cmdlet to allow for specifying the name of the application customizer [#4767](https://github.com/pnp/powershell/pull/4767)
- Added `Get-PnPTraceLog` cmdlet which allows reading from the detailed in memory logs of the PnP PowerShell cmdlet execution [#4794](https://github.com/pnp/powershell/pull/4794)
- Added `-Transitive` parameter to `Get-PnPAzureADGroupMember` cmdlet to allow members of groups inside groups to be retrieved [#4799](https://github.com/pnp/powershell/pull/4799)

### Changed

Expand Down Expand Up @@ -143,6 +144,7 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/).

### Contributors

- [PitSysAdmin]
- Abhijeet Jadhav [TekExpo]
- [abwlodar]
- [jgfgoncalves]
Expand Down
33 changes: 27 additions & 6 deletions documentation/Get-PnPAzureADGroupMember.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,17 +15,17 @@ title: Get-PnPAzureADGroupMember

* 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

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

## SYNTAX

```powershell
Get-PnPAzureADGroupMember -Identity <AzureADGroupPipeBind> [-Connection <PnPConnection>]
Get-PnPAzureADGroupMember -Identity <AzureADGroupPipeBind> [-Connection <PnPConnection>] [-Transitive]
```

## DESCRIPTION

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

## EXAMPLES

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

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

### EXAMPLE 2
```powershell
Get-PnPAzureADGroupMember -Identity $group
```

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

### EXAMPLE 3
```powershell
Get-PnPAzureADGroupMember -Identity $group -Transitive
```

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.

## PARAMETERS

### -Identity
The Identity of the Azure Active Directory group.
The Identity of the Entra ID group.

```yaml
Type: AzureADGroupPipeBind
Expand All @@ -73,6 +80,20 @@ Accept pipeline input: False
Accept wildcard characters: False
```

### -Transitive
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.

```yaml
Type: SwitchParameter
Parameter Sets: (All)

Required: False
Position: Named
Default value: False
Accept pipeline input: False
Accept wildcard characters: False
```

## RELATED LINKS

[Microsoft 365 Patterns and Practices](https://aka.ms/m365pnp)
10 changes: 8 additions & 2 deletions src/Commands/AzureAD/GetAzureADGroupMember.cs
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,9 @@ public class GetAzureADGroupMember : PnPGraphCmdlet
[Parameter(Mandatory = true, ValueFromPipeline = true)]
public AzureADGroupPipeBind Identity;

[Parameter(Mandatory = false, ValueFromPipeline = false)]
public SwitchParameter Transitive;

protected override void ExecuteCmdlet()
{
Group group = null;
Expand All @@ -30,8 +33,11 @@ protected override void ExecuteCmdlet()
if (group != null)
{
// Get members of the group
var members = Microsoft365GroupsUtility.GetMembers(GraphRequestHelper, new Guid(group.Id));
WriteObject(members?.OrderBy(m => m.DisplayName), true);
var members = Transitive
? Microsoft365GroupsUtility.GetTransitiveMembers(GraphRequestHelper, new Guid(group.Id))
: Microsoft365GroupsUtility.GetMembers(GraphRequestHelper, new Guid(group.Id));
WriteObject(members?.OrderBy(m => m.DisplayName), true);

}
}
}
Expand Down
5 changes: 5 additions & 0 deletions src/Commands/Utilities/Microsoft365GroupsUtility.cs
Original file line number Diff line number Diff line change
Expand Up @@ -389,6 +389,11 @@ internal static IEnumerable<Microsoft365User> GetMembers(ApiRequestHelper reques
{
return GetGroupMembers(requestHelper, "members", groupId);
}

internal static IEnumerable<Microsoft365User> GetTransitiveMembers(ApiRequestHelper requestHelper, Guid groupId)
{
return GetGroupMembers(requestHelper, "transitiveMembers", groupId);
}

private static IEnumerable<Microsoft365User> GetGroupMembers(ApiRequestHelper requestHelper, string userType, Guid groupId)
{
Expand Down
Loading