Get-AzureADGroupOwner
Gets an owner of a group.
Syntax
Get-AzureADGroupOwner
-ObjectId <String>
[-All <Boolean>]
[-Top <Int32>]
[<CommonParameters>]
Description
The Get-AzureADGroupOwner cmdlet gets an owner of a group in the Microsoft Entra ID.
Examples
Example 1: Get a group owner by ID
PS C:\>Get-AzureADGroupOwner -ObjectId "62438306-7c37-4638-a72d-0ee8d9217680"
ObjectId ObjectType
-------- ----------
0a1068c0-dbb6-4537-9db3-b48f3e31dd76 User
This command gets the specified group owner.
Parameters
-All
If true, return all group owners. If false, return the number of objects specified by the Top parameter
Type: | Boolean |
Position: | Named |
Default value: | None |
Required: | False |
Accept pipeline input: | True |
Accept wildcard characters: | False |
-ObjectId
Specifies the ID of a group in the Microsoft Entra ID.
Type: | String |
Position: | Named |
Default value: | None |
Required: | True |
Accept pipeline input: | True |
Accept wildcard characters: | False |
-Top
Specifies the maximum number of records to return.
Type: | Int32 |
Position: | Named |
Default value: | None |
Required: | False |
Accept pipeline input: | True |
Accept wildcard characters: | False |
Notes
See the migration guide for Get-AzureADGroupOwner to the Microsoft Graph PowerShell.