好的,这是我的 web.config 文件的片段:
<?xml version="1.0" encoding="utf-8"?>
<configuration xmlns="http://schemas.microsoft.com/.NetConfiguration/v2.0">
<location path="." inheritInChildApplications="false">
<connectionStrings>
...
</connectionStrings>
</location>
<location path="." inheritInChildApplications="false">
<appSettings>
<!--IT Ops-->
<add key="SomeOtherKey" value="SomeOtherValue" />
<add key="SiteDomain" value="somedomain.com" />
<add key="SomeOtherKey" value="SomeOtherValue" />
....
</appSettings>
</location>
</configuration>
我要做的是通过 Powershell 使用 xPath 找到节点。关于这个 XML 文件有几点需要注意:
有多个:
<location path="." inheritInChildApplications="false">
xml 文件中的值。它们围绕其他节点,例如等...
我可以使用此脚本成功找到并替换连接字符串值
$WebConfigFile = Join-Path $destination Web.config
[xml]$WebConfigXml = Get-Content ($WebConfigFile)
$WebConfigXml.configuration.location[2].connectionStrings.add | % { $_.connectionString = $_.connectionString -replace "some value", $sqlServerName }
但是当我去使用这个脚本替换 add key="SiteDomain" 值时:
$node = $WebConfigXml.configuration.location[3].appSettings.SelectSingleNode("add[@key = 'SiteDomain']")
$node.value = "someValue"
$WebConfigXml.Save($WebConfigFile)
这没用。在这种情况下,$node 值包含一个空字符串。
我也试图像这样读取节点:
$appSettingsSection = $WebConfigXml.configuration.location[3].appSettings;
$existingSiteDomain = $appSettingsSection.SelectSingleNode("add[@key='SiteDomain']")
而且我仍然得到 $existingSiteDomain 值的空字符串。
我已经使用 SelectSingleNode 查看了示例,但我似乎不太明白。不太确定我做错了什么。
谢谢,迈克