Contenidos
En el siguiente ejemplo se muestran tareas que están en formato JSON
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
$tareas = '{ "tareas": [ { "id": "1", "tarea": "abrir" }, { "id": "2", "tarea": "cerrar" } ] }' | ConvertFrom-Json $tareas.tareas |
Importar el contenido y mostrarlo
