external help file | Module Name | online version | schema |
---|---|---|---|
SPClientCore.dll-Help.xml |
SPClientCore |
2.0.0 |
Retrieves one or more group members.
Get-KshGroupMember [-Group] <Group> [-MemberId] <Int32> [-ProgressAction <ActionPreference>]
[<CommonParameters>]
Get-KshGroupMember [-Group] <Group> [-MemberName] <String> [-ProgressAction <ActionPreference>]
[<CommonParameters>]
Get-KshGroupMember [-Group] <Group> [-NoEnumerate] [-ProgressAction <ActionPreference>] [<CommonParameters>]
The Get-KshUser cmdlet retrieves members of the specified group.
PS C:\> Get-KshGroupMember -Group (Get-KshGroup -GroupName 'Blog Owners') -MemberId 1
Retrieves a group member by member ID.
PS C:\> Get-KshGroupMember -Group (Get-KshGroup -GroupName 'Blog Owners') -MemberName 'i:0#.f|membership|admin@example.onmicrosoft.com'
Retrieves a group member by member login name.
PS C:\> Get-KshGroupMember -Group (Get-KshGroup -GroupName 'Blog Owners') -MemberName 'admin@example.onmicrosoft.com'
Retrieves a group member by member e-mail address.
PS C:\> Get-KshGroupMember -Group (Get-KshGroup -GroupName 'Blog Owners')
Retrieves all users of the group.
Specifies the group.
Type: Group
Parameter Sets: (All)
Aliases:
Required: True
Position: 0
Default value: None
Accept pipeline input: False
Accept wildcard characters: False
Specifies the user ID.
Type: Int32
Parameter Sets: ParamSet1
Aliases:
Required: True
Position: 1
Default value: None
Accept pipeline input: False
Accept wildcard characters: False
Specifies the user login name or e-mail address.
Type: String
Parameter Sets: ParamSet2
Aliases:
Required: True
Position: 1
Default value: None
Accept pipeline input: False
Accept wildcard characters: False
If specified, suppresses to enumerate objects.
Type: SwitchParameter
Parameter Sets: ParamSet3
Aliases:
Required: False
Position: Named
Default value: None
Accept pipeline input: False
Accept wildcard characters: False
Determines how PowerShell responds to progress updates generated by a script, cmdlet, or provider.
Type: ActionPreference
Parameter Sets: (All)
Aliases: proga
Required: False
Position: Named
Default value: None
Accept pipeline input: False
Accept wildcard characters: False
This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters.