TUTOS.EU

Lire un fichier json en Powershell

Interpréter un fichier json en Powershell

Exemple basique

$Document = Get-Content -Path d:\monfichier.json | ConvertFrom-Json
$Document | Select EventTime, EventID, Message | Where-Object {$_.EventID -match "4624" -and $_.Message -match "e"} | Out-GridView
Lien vers le fichier : cliquez ici Copier le code

Pages Web

Site WebDescription
Blogs.technet.microsoft.comPlaying with JSON and PowerShell
jsonlint.comJSON validator

Article(s) en relation(s)

2