I wrote about the unix command-line utility xmllint
there : extract xml from the command line
Let’s do the same exercice in Powershell
PS> gc foo.xml
Simply use [xml] datatype !
(([xml](GC foo.xml)).emplist.emp|Where{$_.no-eq"1"}).ename
John
Powershell rules!
Pingback: Laurent Schneider » xml and powershell : using XPATH