我们的软件安装在 50 台客户端 PC 上。
该软件从 xml 配置文件中选择值。每个客户端在配置文件中都有自己的个人节点值(真/假)。
现在我们正在发布一个新版本的软件,在 xml 配置文件中包含更多节点。
我们如何在保留其节点值(真/假)的同时将新节点添加到客户端现有配置文件。
笔记We have to provide script to client to do this cannot do manually!
示例 XML:
<?xml version="1.0" encoding="utf-8"?>
<ApplicationSettings xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<dbEngine>true</dbEngine>
<EnableAuditLogging>true</EnableAuditLogging>
<Schema>
<FileNo>05</FileNo>
</Schema>
<nodeToBeAdded1>
<xml/>
<xml/>
</nodeToBeAdded1>
<nodeToBeAdded2>
<DefaultPath="c:\"/>
</nodeToBeAdded2>
<ExportTo>
<ExportTo>
<ID>0</ID>
<Path>C:\</Path>
</ExportTo>
</ExportTo>
</ApplicationSettings>