¿Cómo guardar un objeto JSON en un archivo usando Powershell?

He convertido el siguiente archivo JSON en un objeto de representación de PowerShell.

{
"computer": [
    {
        "children": [   
            {   
                "children": [ {
                   "children": [ {
                        "path": "T:\Dropbox\kvaki.html",
                        "name": "kvaki",
                        "type": "url",
                        "url": "http://example.com"
                   } ],
                    "path": "T:\Dropbox\",
                    "name": "Njusha",
                    "type": "folder"
                }, {
                    "path": "T:\Dropbox\Europa.html",
                    "name": "Europa",
                    "type": "url",
                    "url": "http://example.com"
                }, {
                    "path": "T:\Dropbox\math.html",
                    "name": "math",
                    "type": "url",
                    "url": "http://example.com"
                } ],
                "path": "T:\Dropbox\",
                "name": "Money",
                "type": "folder"
            }
        ],
        "full_path_on_file_sys": "T:\Dropbox\"
    }
]

}

Después de hacer algunos cálculos con la representación de PowerShell, me gustaría guardarlo en un archivo como JSON. Pero mando$jsonRepresentation | ConvertTo-Json | Out-File "D:\dummy_path\file.json" lo guarda de esta manera

{
    "computer":  [
                     {
                         "children":  " ",
                         "full_path_on_file_sys":  "T:\Dropbox\"
                     }
                 ]
}

Pregunta: ¿cómo lograr el ahorro correcto de la representación JSON de powershell compleja?