使用powershell替换json中的值

时间:2018-05-25 03:21:20

标签: powershell replace

我有一个包含以下内容的json文件 -

{
"IsEnabled": true,
"EngineConfiguration": {
    "PollInterval": "00:00:15",
    "Components": [{
        "Id": "Logs",
        "FullName": "AWS.EC2.Windows.CloudWatch.CustomLog.CustomLogInputComponent,AWS.EC2.Windows.CloudWatch",
        "Parameters": {
            "LogDirectoryPath": "C:\\log\\2018-05-25",
            "TimestampFormat": "yyyy-MM-dd HH:mm:ss",
            "Encoding": "UTF-8",
            "Filter": "",
            "CultureName": "en-US",
            "TimeZoneKind": "UTC",
            "LineCount": "1"
        }
    }]
  }
}

我想每天使用PowerShell替换此日期(在LogDirectoryPath中提到)。

有人可以使用PowerShell提供最简单的方法来替换它吗?

3 个答案:

答案 0 :(得分:1)

第一步是将内容转换为json:

$json = Convertfrom-json (get-content "\\path\To\Json\File.json")

然后根据需要编辑值:

$json.engineconfiguration.Components.Parameters.LogDirectoryPath = "C:\log\$(Get-Date -Format 'yyyy-MM-dd')"

然后将其写回文件:

ConvertTo-Json $json -Depth 4 | Out-File C:\ProgramData\Temp\test.txt -Force

答案 1 :(得分:1)

此脚本将帮助您更新日志目录。

步骤:

  1. 获取json文件的内容。
  2. 更新属性值(如果存在)。 $ JsonData.update | %{if(...)
  3. 将内容保存在同一文件中。
  4. 脚本:

    $JsonData = Get-Content $JsonFilePath -raw | ConvertFrom-Json
    
    $JsonData.update | % { if($JsonData.engineconfiguration.Components.Parameters.LogDirectoryPath)
                                {
                                    $JsonData.engineconfiguration.Components.Parameters.LogDirectoryPath = "C:\log\$(Get-Date -Format 'yyyy-MM-dd')"
                                }
                            }
    
    $JsonData | ConvertTo-Json -Depth 4  | set-content $JsonFilePath 
    

答案 2 :(得分:1)

我也遇到过同样的问题。我想更改以下 JSON 文件的记录

{
"SQS_QUEUE_URL":  "https://que-url.com/server1",
"SQS_EVENTS_QUEUE_URL":  "https://events-server.com/server1/development_events",
"REGION":  "region1",
"BUCKET":  "test-bucket",
"AE_WORK_PATH":  "C:\\workpath\\path1",
"ENV":  "env"

}

最后,我设法找到了从 Powershell 生成 JSON 文件的最简单方法。

$json = Get-Content "c:\users\bharat.gadade\desktop\test.json" | ConvertFrom-Json 
$json.SQS_QUEUE_URL = "https://que-url.com/server2"
$json.SQS_EVENTS_QUEUE_URL = "https://events-server.com/Server2/development_events"
$json.REGION = "region1 "
$json.BUCKET = "test-bucket"
$json.AE_WORK_PATH = "C:\workpath\path1"
$json.ENV = "env"
$json | ConvertTo-Json | Out-File "c:\users\bharat.gadade\desktop\test.json"