Search-Resources
Description
The Search-Resources
cmdlet allows you to perform a query for multiple objects from the FIM Service. 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
Get all sets
Get resources with specific attributes
Get first 20 resources matching a criteria
Get resources with a known object type
Get resources using the XPath query builder
Get the localized representation of a set of resources
Last updated