Search-ResourcesPaged
Description
The Search-ResourcesPaged
cmdlet allows you to perform a query for multiple objects from the FIM Service, with advanced controls of how you navigate through the result set. For standard searching, see the Search-Resources cmdlet. By default, the cmdlet returns only the ObjectType, ObjectID, and DisplayName attributes for the objects matched by the query string. Use the ExpectedObjectClass
or AttributesToGet
parameters to control the attributes that are returned.
Syntax
Parameters
XPath
The query to use in the search operation. This can be a string or an XPath expression created with the [New-XPathExpression] cmdlet
ExpectedObjectType
Optional. Specifies the expected object type that will be returned from the query. The client will use this to request the attributes from that class as part of the query.
AttributesToGet
Optional. A list of attributes to retrieve for the objects matching the search criteria
Unconstrained
Optional. Performs an unconstrained query, allowing the FIM service to process all attributes in the schema when a matched object is found. This option should be used with caution as it causes significant performance impact on the FIM service.
MaxResults
Optional. Limits the number of results returned by the search operation.
PageSize
Optional. Specifies how many results should be retrieved per page.
SortAttributes
Optional. Specifies a list of attribute names used to order the results
Descending
Optional. Specifies that the sort attributes should be sorted in descending order (default is ascending)
Locale
Optional. Specifies the language code of the culture to localize the representation of the resource in. This requires the appropriate language packs to be installed on the FIM/MIM Service. e.g en-US, de-de, ja-jp, es-es, it-it.
Examples
Iterate through a result set one page at a time
The following example shows how to use the pager to iterate through a result set one page a time
Iterate through the result set, starting from a specific point
The following example shows how to move position in the result set, and starts the operation from the 50th set.
Last updated