PowerShell Lire le fichier JSON

# Use the Get-content cmdlet
Get-Content -Raw -Path <jsonFile>.json | ConvertFrom-Json

# ConvertFrom-Json cmdlet syntax
ConvertFrom-Json
                [-InputObject] <String>
                [-AsHashtable]
                [-Depth <Int32>]
                [-NoEnumerate]
                [<CommonParameters>]
Tomanator