I have an XML file with several tags in it, and I am trying to change the contents of one of these tags with a batch script.
An example of the xml file is:
<ConfigurationData>
<ReportsFolder>\Reports</ReportsFolder>
<Helpfolder>\Help</HelpFolder>
<InstallationType>Terminal</InstallationType>
<LicenseFolder>..\License</LicenseFolder>
</ConfigurationData>
I am trying to change the data between <InstallationType>
and </InstallationType>
to another variable of my choosing. I'm thinking I would need some sort of For loop to find that part of the xml file, but I'm lost as to how I would edit just that one section.