You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+2Lines changed: 2 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -61,6 +61,7 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/).
61
61
- Added `Get-PnPMicrosoft365Roadmap` which allows retrieval of the Microsoft 365 Roadmap items [#4764](https://github.com/pnp/powershell/pull/4764)
62
62
- 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)
63
63
- 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)
64
+
- 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)
64
65
65
66
### Changed
66
67
@@ -143,6 +144,7 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/).
* 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
17
17
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.
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.
45
52
46
53
## PARAMETERS
47
54
48
55
### -Identity
49
-
The Identity of the Azure Active Directory group.
56
+
The Identity of the Entra ID group.
50
57
51
58
```yaml
52
59
Type: AzureADGroupPipeBind
@@ -73,6 +80,20 @@ Accept pipeline input: False
73
80
Accept wildcard characters: False
74
81
```
75
82
83
+
### -Transitive
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.
85
+
86
+
```yaml
87
+
Type: SwitchParameter
88
+
Parameter Sets: (All)
89
+
90
+
Required: False
91
+
Position: Named
92
+
Default value: False
93
+
Accept pipeline input: False
94
+
Accept wildcard characters: False
95
+
```
96
+
76
97
## RELATED LINKS
77
98
78
99
[Microsoft 365 Patterns and Practices](https://aka.ms/m365pnp)
0 commit comments