Select-XML - PowerShell command help and examples

Finds text in an XML string or document. (Select-XML)


NAME
Select-XML
SYNOPSIS
Finds text in an XML string or document.
SYNTAX
Select-XML -Content <string[]> [-Xpath] <string> [-Namespace <hashtable>] [<CommonParameters>] Select-XML [-Path] <string[]> [-Xpath] <string> [-Namespace <hashtable>] [<CommonParameters>] Select-XML [-Xml] <XmlNode[]> [-Xpath] <string> [-Namespace <hashtable>] [<CommonParameters>]
DESCRIPTION
The Select-XML cmdlet lets you use XPath queries to search for text in XML strings and documents. Enter an XPath query, and use the Content, Path, or Xml parameter to specify the XML to be searched.
PARAMETERS
-Content <string[]> Specifies a string that contains the XML to search. You can also pipe strings to Select-XML. Required? true Position? named Default value None Accept pipeline input? true (ByValue) Accept wildcard characters? false -Namespace <hashtable> Specifies a hash table of the namespaces used in the XML. Use the format @{<namespaceName> = <namespaceValue>}. Required? false Position? named Default value None Accept pipeline input? false Accept wildcard characters? false -Path <string[]> Specifies the path and file names of the XML files to search. Wildcards are permitted. Required? true Position? 2 Default value None Accept pipeline input? true (ByPropertyName) Accept wildcard characters? true -Xml <XmlNode[]> Specifies one or more XML nodes. A Path or XML parameter is required in every command. An XML document will be processed as a collection of XML nodes. If you pipe an XML document to Select-XML, each document node will be searched separately as it comes through the pipeline. Required? true Position? 2 Default value None Accept pipeline input? true (ByValue, ByPropertyName) Accept wildcard characters? false -Xpath <string> Specifies an XPath search query. The query language is case-sensitive. This parameter is required. Required? true Position? 1 Default value None Accept pipeline input? false Accept wildcard characters? false <CommonParameters> This cmdlet supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction, WarningVariable, OutBuffer and OutVariable. For more information, type, "get-help about_commonparameters".
INPUTS
System.String or System.Xml.XmlNode You can pipe a path or XML node to Select-XML.
OUTPUTS
System.Xml.XmlElement or System.Xml.XmlText
NOTES
XPath is a standard language that is designed to identify parts of an XML document. For more information about the XPath language, see the "Selection Filters" section of the "Event Selection" topic in the MSDN (Microsoft Developer Network) library at http://go.microsoft.com/fwlink/?LinkId=143608. And, see "XPath Reference" in the MSDN library at http://go.microsoft.com/fwlink/?LinkId=143609.

Examples

EXAMPLE 1
C:\PS>$path = "$env:windir\System32\WindowsPowerShell\v1.0\Types.ps1xml" C:\PS> select-xml -path $path -xpath "/Types/Type/Members/AliasProperty"
Description
----------- This example searches the Types.ps1xml file for child items of the AliasProperty node.
EXAMPLE 2
C:\PS>select-xml -path test*.xml, help.xml -xpath "/Tests/Test[1]/Name"
Description
----------- This command uses Select-XML to search in several XML files.
EXAMPLE 3
C:\PS>[xml]$Types = get-content "$env:windir\System32\WindowsPowerShell\v1.0\Types.ps1xml" C:\PS> select-xml -xml $Types -xpath "//MethodName"
Description
----------- This example shows how to pipe an XML document to Search-Path.
EXAMPLE 4
C:\PS>$namespace = @{command="http://schemas.microsoft.com/maml/dev/command/2004/10"; maml="http://schemas.microsoft.com/maml/2004/10"; dev="http://schemas.microsoft.com/maml/dev/2004/10"} C:\PS> $path = "$env:windir\System32\WindowsPowerShell\V1.0\en-us\*dll-Help.xml" C:\PS> select-xml -path $path -namespace $namespace -xpath "//command:name" Text Node Path ---- ---- ---- Add-Computer name C:\Windows\System32\WindowsPowerShell\V... Add-Content name C:\Windows\System32\WindowsPowerShell\V... Checkpoint-Computer name C:\Windows\System32\WindowsPowerShell\V... Clear-Content name C:\Windows\System32\WindowsPowerShell\V... Clear-EventLog name C:\Windows\System32\WindowsPowerShell\V... ...
Description
----------- This example shows how to use the Select-XML cmdlet to search the Windows PowerShell XML-based cmdlet help files. The first command creates a hash table that represents the XML namespace and saves it in the $namespace variable. The second command saves the path to the help files in the $path variable. The third command uses Select-Xml to search the XML for cmdlet names by finding Command:Name tags anywhere in the files.
EXAMPLE 5
C:\PS>select-xml -content $xml -xpath "//edition" C:\PS> $xml = @" <?xml version="1.0" encoding="utf-8"?> <Book> <projects> <project name="Book1" date="2009-01-20"> <editions> <edition language="English">En.Book1.com</edition> <edition language="German">Ge.Book1.Com</edition> <edition language="French">Fr.Book1.com</edition> <edition language="Polish">Pl.Book1.com</edition> </editions> </project> </projects> </Book> "@ C:\PS> select-xml -content $xml -xpath "//edition" Text Node Path ---- ---- ---- En.Book1.com edition InputStream Ge.Book1.Com edition InputStream Fr.Book1.com edition InputStream Pl.Book1.com edition InputStream C:\PS> $xml | select-xml -xpath "//edition" Text Node Path ---- ---- ---- En.Book1.com edition InputStream Ge.Book1.Com edition InputStream Fr.Book1.com edition InputStream Pl.Book1.com edition InputStream
Description
----------- This example uses the Content parameter of Select-XML to search XML content in a here-string. The first command saves the here-string in the $xml variable. The second command uses the Content parameter to specify the XML in the $xml variable. The third command is equivalent to the second. It uses a pipeline operator (|) to send the XML in the $xml variable to the Select-XML cmdlet. For more information about here-strings, type about_Quoting_Rules. RELATED LINKS Online version: http://go.microsoft.com/fwlink/?LinkID=135255 ConvertTo-XML C:\Windows>powershell get-help Write-Debug -full

Microsoft Windows [Version 10.0.19045.3693]
Copyright (c) 2023 Microsoft Corporation.

ColorConsole [Version 3.7.1000] PowerShell 2.0-Export

Windows 11, 10, 8.1, 8, 7 / Server 2022, 2019, 2016











Windows-10


... Windows 10 FAQ
... Windows 10 How To


Windows 10 How To


... Windows 11 How To
... Windows 10 FAQ



PowerShell: Finds text in an XML string or document.

HTTP: ... PS_Windows/en/Select-XML.htm
0.093
12525

Desktop icons and shortcuts are not displayed in Windows 10/11?

LED TV/Fernseher, LCD-Fernseher, oder Plasma?

Screen recording Cursor hidden, play video is the mouse pointer visible?

Die Windows Tastenkombination um den Taskmanager schnell und direkt zu starten!

Problems when writing under Windows 10. 8.1, ...!

Help Windows 10/11 has no fax and scan function, where is it?



(0)