gpt4 book ai didi

xml - 如何在 PowerShell 中将元素添加到空 XML (CSCFG) 节点

转载 作者:行者123 更新时间:2023-12-03 00:37:42 27 4
gpt4 key购买 nike

我有一个如下所示的 xml 文件(CSCFG 文件)

XML 文件:

 <Role name="Role1">
<Instances count="2" />
<ConfigurationSettings>
<Setting name="Key1" value="123456" />
<Setting name="Key2" value="1234567890" />
<Setting name="Key3" value="true" />
</ConfigurationSettings>
<Certificates>
</Certificates>
</Role>

我需要在证书节点内添加多个证书元素。

成为 XML:

<Role name="Role1">
<Instances count="2" />
<ConfigurationSettings>
<Setting name="Key1" value="123456" />
<Setting name="Key2" value="1234567890" />
<Setting name="Key3" value="true" />
</ConfigurationSettings>
<Certificates>
<Certificate name="certificate1" thumbprint="12345678" />
<Certificate name="certificate2" thumbprint="01234567" />
<Certificate name="certificate3" thumbprint="09876543" />
</Certificates>
</Role>

我正在尝试使用下面的代码来做到这一点

$xmlDoc = [System.Xml.XmlDocument](Get-Content $configFile);
$xmlDoc.Role.Certificates.AppendChild($xmlDoc.CreateElement("Certificate"));
$newXmlCertificate.SetAttribute(“name”,$certName);
$newXmlCertificate.SetAttribute(“thumbprint”,$CertThumbprint);
$xmlDoc.save($configFile)

这是执行此操作时遇到的异常:方法调用失败,因为 [System.String] 不包含名为“AppendChild”的方法。

请帮帮我。

最佳答案

这是因为 Certificates 属性返回一个字符串:

25> $xmlDoc.Role.Certificates.GetType().FullName
System.String

由于该元素是没有属性的叶元素,因此 PowerShell 将该元素的表示形式简化为包含该元素内容的字符串属性。您可以通过像这样解决问题来获得您想要的东西:

26> [xml]$xmlDoc = @'
>>> <Role name="Role1">
>>> <Instances count="2" />
>>> <ConfigurationSettings>
>>> <Setting name="Key1" value="123456" />
>>> <Setting name="Key2" value="1234567890" />
>>> <Setting name="Key3" value="true" />
>>> </ConfigurationSettings>
>>> <Certificates>
>>> </Certificates>
>>> </Role>
>>> '@
27> $certElem = $xmlDoc.CreateElement('Certificate')
28> $certElem.SetAttribute('name','certificate1')
29> $certElem.SetAttribute('thumbprint','12345678')
30> $xmlDoc.SelectSingleNode('/Role/Certificates').AppendChild($certElem)
31. $xmlDoc.Save($configFile)

关于xml - 如何在 PowerShell 中将元素添加到空 XML (CSCFG) 节点,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29460650/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com