1
私はPowerShellのバージョン5を使用して、私の解析されたJSONに何かを追加したい私のコード:PowerShell解析されたJSONにさらにデータを追加する方法は?
$file = 'C:\test\data.json'
$json = Get-Content -Raw $file;
$jsonparsed = ConvertFrom-Json -InputObject $json;
$machineName = [System.Environment]::MachineName;
$blockcvalue [email protected]"
{
"id": "$machineName"
}
"@
私のJSONデータ: - 私は次のように私のJSONにいくつかのデータを追加したい
{
"path": "C:\\test\\Storage",
"fs": "C:\\test\\fs",
"serverAddresses": [
"http://localhost:5000"
],
"serverCertificate": {
"name": "My",
"location": "location"
}
}
: -
{
"path": "C:\\test\\Storage",
"fs": "C:\\test\\fs",
"serverAddresses": [
"http://localhost:5000"
],
"serverCertificate": {
"name": "My",
"location": "location"
},
"id": "MyComputerName"
}
"id": "MyComputerName"をJSONデータに追加するにはどうすればよいですか?