Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
set xmldoc=createobject("msxml2.domdocument")
xmldoc.load "C:\a\bex00032.xml"
xmldoc.async=false
set machine = xmldoc.documentelement
for each onode in machine.childnodes
wscript.echo onode.nodename & "=" & onode.text
next
set xmldoc=nothing