你当前正在访问 Microsoft Azure Global Edition 技术文档网站。 如果需要访问由世纪互联运营的 Microsoft Azure 中国技术文档网站,请访问 https://docs.azure.cn。
Get-AzureADGroupMember
获取组的成员。
语法
Get-AzureADGroupMember
-ObjectId <String>
[-All <Boolean>]
[-Top <Int32>]
[<CommonParameters>]
说明
Get-AzureADGroupMember cmdlet 获取 Microsoft Entra ID 中组的成员。
示例
示例 1:按 ID 获取组成员
PS C:\>Get-AzureADGroupMember -ObjectId "62438306-7c37-4638-a72d-0ee8d9217680"
ObjectId ObjectType
-------- ----------
0a1068c0-dbb6-4537-9db3-b48f3e31dd76 User
示例 2:按组 ID 获取组中的所有成员
PS C:\> Get-AzureADGroupMember -ObjectId "12431118-5c12-6653-h82e-1ee8d9217682" -All $true
ObjectId ObjectType
-------- ----------
0a1068c0-dbb6-4537-9db3-b48f3e31dd76 User
0a1068c0-dbb6-4537-9db3-b48f3e31dd76 User
0a1068c0-dbb6-4537-9db3-b48f3e31dd76 Group
参数
-All
如果为 true:返回所有组成员。
如果为 false:返回由 Top 参数指定的对象数。 如果未指定 top 参数,则返回前 100 个组成员。
类型: | Boolean |
Position: | Named |
默认值: | None |
必需: | False |
接受管道输入: | True |
接受通配符: | False |
-ObjectId
指定 Microsoft Entra ID 中组的 ID。
类型: | String |
Position: | Named |
默认值: | None |
必需: | True |
接受管道输入: | True |
接受通配符: | False |
-Top
指定要返回的最大记录数。
类型: | Int32 |
Position: | Named |
默认值: | None |
必需: | False |
接受管道输入: | True |
接受通配符: | False |
备注
请参阅 Get-AzureADGroupMember 到 Microsoft Graph PowerShell 的迁移指南。