PowerTip: Convert JSON File to PowerShell Object

Doctor Scripto

Summary: Easily convert a JSON file to a Windows PowerShell object.

Hey, Scripting Guy! Question How do I convert a JSON file to a Windows PowerShell object?

Hey, Scripting Guy! Answer Use the Get-Content cmdlet with the Raw parameter:

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

0 comments

Discussion is closed.

Feedback usabilla icon