I don't know much about batch coding or vbscript. Anyway, what I have to ask right now is how to read specific data in an xml file using batch script or vbscript? The script would like to read empty tags or self terminate tags in xml. If the script found empty tags, it should output an error in a log file.
I have my XML here:
<author>
<fname>John</fname>
<lname>Doe</lname>
</author>
<institution>
<name/>
<city>Pork</city>
<country>Plate</country>
</institution>
Assuming, name tag is an error.