select a xml tag AND its contents inclusing the Tag start and end itself
<Start>
Random Text here
</Start>
im trying
select-xml -path $my path -xpath //Start | select-object -expandproperty node
it returns 'Random Text here' but not the two tags <Start></Start>
Is this possible?
Thank You