PowerShell - File and Directory Operations
Given a PowerShell object with nested properties:
What is the correct output?
$obj = @{user = @{name = "Liam"; age = 34}; active = $true}
$json = $obj | ConvertTo-Json -Depth 2
$jsonWhat is the correct output?
