New-XPathExpression
Description
The New-XPathExpression
cmdlet create an XPath expression that can be used in the following manners
As an input to the Search-Resources cmdlet
As an input to the New-XPathQuery cmdlet
By using the ToString() method, you can generate an expression to use elsewhere in your script
When setting a resource attribute that expects a Filter type
The cmdlet takes a query or group generated with the New-XPathQuery or New-XPathQueryGroup cmdlets and produces an XPath expression that can be used in the manners described above.
For a full list of examples filters generated by the XPath cmdlets, see the XPath expression examples page.
Syntax
Parameters
ObjectType
Required. The type of object to query. To search on all object types, use the value *
QueryObject
Required. The query or group generated using the New-XPathQuery or New-XPathQueryGroup cmdlet
DereferenceAttribute
Optional. Specifies a reference-type attribute to query. See the example section for more information.
WrapFilterXml
Optional. Specifies that the resulting XPath expression should be wrapped in the filter XML element used when setting the Filter
attribute on sets and groups.
Examples
Creating a basic expression
This returns an expression containing the query
Passing the expression to the Search-Resources cmdlet
The expression can be passed directly to the Search-Resources cmdlet to search for objects
Building an expression to dereference an object
The expression builder supports dereferencing expressions, as supported by the Resource Management Service. The following example finds the manager of a user with the account name 'ryan'
This returns the following expression
You can also use a nested expression to find all users who have the person with the account name of 'ryan' as their manager
This returns an expression containing the query
Building a filter expression
When using the expression builder to create an value to use in a Filter
attribute in a set or group, you can specify that the resulting expression should be wrapped in the XML filter element.
The resulting string is as follows
Last updated