Importar contenido JSON desde una web
1 2 |
$web = iwr "https://www.jesusninoc.com/rutinas2.json" $contenidojson = $web.Content | ConvertFrom-Json |

Convertir el contenido JSON a CSV
1 |
$contenidojson | ConvertTo-Csv | Out-File fichero.csv |
