Deleting an xml element

I have an example of a xml format,…with that I would like to remove the element listed as

How can I remove that one element? Thank you for any help.

The post seems to removed a very crucial part of your question. With that said, is seems you just want to know how to remove an element. The below should help. In this example I am removing all Virtual Computer elements from the XML

Results:

The easiest way is to select that one XML node, and then:

$node.parentnode.removechild($Node)

David F.