Windows PowerShell Pocket Reference by Lee Holmes

Windows PowerShell Pocket Reference by Lee Holmes

Author:Lee Holmes [Lee Holmes]
Language: eng
Format: epub, pdf
Tags: COMPUTERS / Programming / Microsoft Programming
ISBN: 9781449320959
Publisher: O'Reilly Media
Published: 2012-12-09T16:00:00+00:00


/

Represents the root of the XML tree.

For example:

PS > $xml | Select-Xml "/" | Select -Expand Node AddressBook ----------- AddressBook

/Node

Navigates to the node named Node from the root of the XML tree.

For example:

PS > $xml | Select-Xml "/AddressBook" | Select -Expand Node Person ------ {Lee, Ariel}

/Node/*/Node2

Navigates to the noded named Node2 via Node, allowing any single node in between.

For example:

PS > $xml | Select-Xml "/AddressBook/*/Name" | Select -Expand Node #text ----- Lee Ariel



Download



Copyright Disclaimer:
This site does not store any files on its server. We only index and link to content provided by other sites. Please contact the content providers to delete copyright contents if any and email us, we'll remove relevant links or contents immediately.