Table of contents
ISE
TOC
Collapse the table of content
Expand the table of content

Get-LocalGroup

JuanPablo Jofre|Last Updated: 12/17/2016
|
3 Contributors

SYNOPSIS

Gets the local security groups.

SYNTAX

Default (Default)

Get-LocalGroup [[-Name] <String[]>] [<CommonParameters>]

SecurityIdentifier

Get-LocalGroup [[-SID] <SecurityIdentifier[]>] [<CommonParameters>]

DESCRIPTION

The Get-LocalGroup cmdlet gets local security groups in Security Account Manager. This cmdlet gets default built-in groups and local security groups that you create.

EXAMPLES

Example 1: Get the Administrators group

PS C:\> Get-LocalGroup -Name "Administrators"
Name           Description
----           -----------
Administrators Administrators have complete and unrestricted access to the computer/domain

This command gets the local Administrators group. The command displays properties of the group in the console.

PARAMETERS

-Name

Specifies an array of names of security groups that this cmdlet gets. You can use the wildcard character.

Type: String[]
Parameter Sets: Default
Aliases: 

Required: False
Position: 0
Default value: None
Accept pipeline input: True (ByPropertyName, ByValue)
Accept wildcard characters: False

-SID

Specifies an array of security IDs (SIDs) of security groups that this cmdlet gets.

Type: SecurityIdentifier[]
Parameter Sets: SecurityIdentifier
Aliases: 

Required: False
Position: 0
Default value: None
Accept pipeline input: True (ByPropertyName, ByValue)
Accept wildcard characters: False

CommonParameters

This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216).

INPUTS

System.String, System.Security.Principal.SecurityIdentifier

You can pipe a string or a SID to this cmdlet.

OUTPUTS

System.Management.Automation.SecurityAccountsManager.LocalGroup

This cmdlet returns a local group.

NOTES

  • 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.

New-LocalGroup

Remove-LocalGroup

Rename-LocalGroup

Set-LocalGroup

© 2017 Microsoft