This is an archive version of the document. To get the most up-to-date information, see the current version.

Get-VBOOrganizationGroupMember

Short Description

Returns members of organization groups.

Syntax

Get-VBOOrganizationGroupMember -Group <VBOOrganizationGroup>  [<CommonParameters>]

Detailed Description

This cmdlet returns an array of members added to organization groups.

Parameters

Parameter

Description

Type

Required

Position

Accept Pipeline Input

Accept Wildcard Characters

Group

Specifies an organization group. The cmdlet will return members added to this group.

Accepts the VBOOrganizationGroup object.

To get this object, run the  Get-VBOOrganizationGroup cmdlet.

True

Named

True (ByValue)

False

<CommonParameters>

This cmdlet supports Microsoft PowerShell common parameters. For more information on common parameters, see the About CommonParameters section of Microsoft Docs.

Output Object

This cmdlet returns the VBOOrganizationGroupMember object that contains an array of members added to organization groups.

Examples

Get-VBOOrganizationGroupMemberExample 1. Getting Organization Group Members

This example shows how to get organization group members added to organization groups.

$organization = Get-VBOOrganization

$group = Get-VBOOrganizationGroup -Organization $organization -DisplayName "Exchange Group"

Get-VBOOrganizationGroupMember -Group $group

Perform the following steps:

  1. Run the Get-VBOOrganization cmdlet. Save the result to the $organization variable.
  2. Run the Get-VBOOrganizationGroup cmdlet. Set the $organization variable as the Organization parameter value. Specify the DisplayName parameter value. Save the result to the $group variable.
  3. Run the Get-VBOOrganizationGroupMember cmdlet. Set the $group variable as the Group parameter value.

Related Commands