I have a fairly standard csv file with headers I want to add a new column & set all the rows to the same data.
column1, column2 1,b 2
The ShayLevy's answer also works for me!
If you don't want to provide a value for each object yet the code is even easier...
Import-Csv file.csv | Select-Object *,"column3" | Export-Csv file.csv -NoTypeInformation