12
Ho un file JSON mytest.json
come qui di seguito voglio aggiornare i valori utilizzando powershell script
come faccio a aggiornare il file JSON utilizzando PowerShell
update.json
{
"update": [
{
"Name": "test1",
"Version": "2.1"
},
{
"Name": "test2",
"Version": "2.1"
}
]
}
Voglio scrivere uno script PowerShell in cui if Name=="test1" I want to update Version= "3"
come posso farlo usando i parametri?
opere super veloce grande grazie @JPBlanc – Neo
articoli che 'ConvertTo-Json' ha una profondità di default 2. JSON profonda andranno' ToString''d che è probabilmente non quello che vuoi Se si dispone di più nested json, utilizzare il parametro 'Depth':' ConvertTo-Json -Depth 20' – FLGMwt