簡體   English   中英

Powershell 用於查找和替換 XML 文件中的值的腳本匹配 CSV 文件中的值作為參數

[英]Powershell Script for finding and replacing values in an XML file matching values in CSV file as parameters

我從 powershell 開始,我需要一些幫助來部署腳本,其中一個正在更改配置文件 (xml) 中的值。 所有設置值都在 csv 文件中:

ID,CountryCode,LanguageCode,SiteID,SiteName
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.1

ID 在本地計算機注冊表中是唯一的,由部署的應用程序創建

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")

提前致謝

這有效

 $scriptPath = split-path -parent $MyInvocation.MyCommand.Definition

 $csv = Import-Csv '$scriptPath\testvaluesFile.csv'
 $XMLpath = ("$scriptPath\testconfigFile.xml")
 $XMLcontents = [XML] (Get-content $XMLpath)
 $node1 = $XMLcontents.SelectNodes("/CountryCode")
 $node2 = $XMLcontents.SelectNodes("/LanguageCode")
 $node3 = $XMLcontents.SelectNodes("/SiteID")
 $node4 = $XMLcontents.SelectNodes("SiteName")

$ID = (Get-ItemProperty "HKLM:\SOFTWARE\EDITOR\APP").ID

if($csvitem.ID -eq $CountryCode) {

        foreach($individual1 in $Node1)
        {
            $CountryCode = $csvitem.CountryCode
            $individual1.'#Text' = "$CountryCode"
        }

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM