Wie kann ich die Daten aus einer CSV Datei in Powershell Zeile für Zeile ausgeben?
$csvPath = "test.csv" $csvData = Import-Csv -Path $csvPath $csvData
In einer foreach Schleife wobei jeder Index eine Zeile darstellt.
foreach ($row in $csvData) { Write-Output "Spalte 1: $($row.Column1), Spalte 2: $($row.Column2), ..." }