So I'm just starting out with this whole Powershell thing and so far so good - until now. I just can't figure out how to do this! I'm looking at manipulating CSV files which are output from one system (which I can't change at output), renaming some column headers and merging a couple of the results into one column so that it matches the input requirements to upload into another system (again, I can't change those parameters). So, as an example.
The first file is created: File1.csv "A","B","C""1","2","3"
I want a powershell script that will output: File2.csv "X","Y""1","23" So I can import it into another system.
I hope that all makes sense, and thanks in advance for any assistance.