Get-LocalGroupMember [-Group*] <LocalGroup> [[-Member] <String>] [<CommonParameters>]
Get-LocalGroupMember [-Name*] <String> [[-Member] <String>] [<CommonParameters>]
Get-LocalGroupMember [-SID*] <SecurityIdentifier> [[-Member] <String>] [<CommonParameters>]
The Get-LocalGroupMember cmdlet gets members from a local group.
-Group <LocalGroup>
Specifies the security group from which this cmdlet gets members.
-Member <String>
Specifies a user or group that this cmdlet gets from a security group. You can specify users or groups by name or security ID (SID). Specify SID strings in S-R-I-S-S . . . format. You can use wildcard characters. If you do not specify this parameter, the cmdlet gets all members of the group.
-Name <String>
Specifies the name of the security group from which this cmdlet gets members.
-SID <SecurityIdentifier>
Specifies the security ID of the security group from which this cmdlet gets members.
<CommonParameters>
This cmdlet supports the common parameters: Verbose, Debug,ErrorAction, ErrorVariable, WarningAction, WarningVariable,OutBuffer, PipelineVariable, and OutVariable.
PS C:\> Get-LocalGroupMember -Group "Administrators"
ObjectClass Name PrincipalSource
----------- ---- ---------------
User CONTOSOPC\Administrator Local
User CONTOSOPC\LocalAdmin Local
This command gets all the members of the local Administrators group.
The PrincipalSource property is a property on LocalUser , LocalGroup , and LocalPrincipal * objects that describes the source of the object. The possible sources are as follows: - Local - Active Directory - Azure Active Directory group - Microsoft Account PrincipalSource is supported only by Windows 10, Windows Server 2016, and later versions of the Windows operating system. For earlier versions, the property is blank.
This work is licensed under a Creative Commons Attribution 4.0 International. It is attributed to Microsoft Corporation and can be found here.
PowerShell Commands