Answers for "powershell read json file"

0

powershell read json file

# 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>]
Posted by: Guest on September-15-2021

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language