-
Notifications
You must be signed in to change notification settings - Fork 4
Get AcmaObjects
ryannewington edited this page Jun 22, 2016
·
7 revisions
Gets the specified objects from the ACMA database
Get-AcmaObjects -DBQuery <AcmaPSDBQueryObject>
Get-AcmaObjects -IDs <guid[]>
A DBQuery object created using the ew-AcmaPresenceQuery, ew-AcmaQuery, or ew-AcmaQueryGroup cmdlets
An array of object IDs
The cmdlet returns an collection of cmaPSObjects
$objects = Get-AcmaObjects -IDs @("e88035d4-0d45-4f2a-8cb1-d71aa55a7187","8f495b8d-799e-4eb1-9edf-dbe07fc01464");
$query = New-AcmaQuery -Attribute "objectClass" -Operator Equals -Value "person";
$objects =Get-AcmaObjects $query;