Summary: Use Windows PowerShell to create custom column headings.
How can I use Windows PowerShell to generate custom heading for a CSV file when I import it?
Specify the –Header parameter as an array of names in the order of the fields, for example:
Import-CSV c:\fso\myfile.csv –delimiter “:” –header ‘FName’, ‘LName’, ‘Street’, ‘City’, ‘State’, ‘Zip’