共用方式為


Get-AzureADGroupMember

取得群組的成員。

語法

Get-AzureADGroupMember
   -ObjectId <String>
   [-All <Boolean>]
   [-Top <Int32>]
   [<CommonParameters>]

Description

Get-AzureADGroupMember Cmdlet 會取得 Microsoft Entra ID 中群組的成員。

範例

範例 1:依標識符取得群組成員

PS C:\>Get-AzureADGroupMember -ObjectId "62438306-7c37-4638-a72d-0ee8d9217680"

ObjectId                             ObjectType
--------                             ----------
0a1068c0-dbb6-4537-9db3-b48f3e31dd76 User

範例 2:依群組標識符取得群組中的所有成員

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 中群組的標識碼。

類型:String
Position:Named
預設值:None
必要:True
接受管線輸入:True
接受萬用字元:False

-Top

指定要傳回的記錄數目上限。

類型:Int32
Position:Named
預設值:None
必要:False
接受管線輸入:True
接受萬用字元:False

備註

請參閱 Get-AzureADGroupMember 至 Microsoft Graph PowerShell 的移轉指南。