【发布时间】:2020-05-07 15:53:50
【问题描述】:
我从 powershell 开始,我需要一些帮助来部署脚本,其中一个正在更改配置文件 (xml) 中的值。 所有设置值都在 csv 文件中:
ID、国家代码、语言代码、站点 ID、站点名称 00000001,1,us001,01,site1 00000002,1,us001,01.1,site1.1 00000003,2,fr002,02,site2 00000004,3,uk003,03,site3 00000005,4,de004,04,site4 00000006,4,de004,04.1,site4.1ID 在本地计算机注册表中是唯一的,由部署的应用程序创建
HKEY_LOCAL_MACHINE\SOFTWARE\EDITOR\APP ID reg_sz 00000001此应用的配置 xml 需要更新,我正在尝试通过 powershell 进行更新
<?xml version="1.0" encoding="utf-8"?>
<LocalSetting xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<CountryCode>1</CountryCode>
<LanguageCode>0001</LanguageCode>
<SiteID>000000</SiteID>
<SiteName>test</SiteName>
这是powershell代码的一部分
$csv = Import-Csv 'C:\test\testvaluesFile.csv' | Select-Object "ID","CountryCode","LanguageCode","SiteID","SiteName"
$XMLpath = ("C:\test\testconfigFile.xml")
$XMLcontents = [XML] (Get-content $XMLpath)
$nodes = $XMLcontents.SelectNodes("/LocalSetting/CountryCode","/LocalSetting/LanguageCode","/LocalSetting/SiteID","/LocalSetting/SiteName")
$ID = (Get-ItemProperty "HKLM:\SOFTWARE\EDITOR\APP").ID
foreach($row in $csv) {
foreach($node in $nodes) {
if ($ID -eq $row.ID) {
$node.SetAttribute = $row.$nodes
}
}
}
$xml.Save("C:\test\testconfigFile.xml")
提前致谢
【问题讨论】:
-
这是 stackoverflow 和许多其他问答网站上的常见问题。只需使用上面的搜索框在此处查找类似的帖子:xml replace data,或者通过网络搜索进行相同的操作。 powershell relace xml data
-
这能回答你的问题吗? Change XML Element value with PowerShell
标签: xml powershell csv