#TodayILearned that there is no import-json in Powershell, so you have to do:

Get-Content -Raw -Path <jsonFile>.json | ConvertFrom-Json

devblogs.microsoft.com/scripting…