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 create this object, run the Get-VBOOrganizationGroup cmdlet. | True | Named | True (ByValue) |
|
<CommonParameters>
This cmdlet supports Microsoft PowerShell common parameters. For more information on common parameters, see Microsoft Docs.
Output Object
This cmdlet returns the VBOOrganizationGroupMember object that contains an array of members added to organization groups.
Examples
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 -Name "Exchange Group" Get-VBOOrganizationGroupMember -Group $group |
Perform the following steps:
- Run the Get-VBOOrganization cmdlet. Save the result to the $organization variable.
- Run the Get-VBOOrganizationGroup cmdlet. Set the $organization variable as the Organization parameter value. Specify the Name parameter value. Save the result to the $group variable.
- Run the Get-VBOOrganizationGroupMember cmdlet. Set the $group variable as the Group parameter value.
Related Commands