There is a data in my text file. It is a list of IP addresses in column, I want to convert it into csv file and with that also i want to create 3 more columns and put the same data that is present in the first column so far have created this
$output_file= "D:output.csv"
#the headers i have given below
Set-Content D:output.csv 'record,stream,library,thumbnail'
$input_file= "D:input1.txt"
$lines = Get-Content $input_file
foreach ($line in $lines) {
Add-Content -Path $output_file -Value "$line, $line, $line, $line"
}
question from:https://stackoverflow.com/questions/65932287/converting-data-from-text-to-csv-and-modifying-it-in-powershell