I have the following line in Powershell to output an array of data. The problem I am having is that Name,Title,Department do not go into columns. Instead I get a single column with each row in a single cell with tabs between.
$outList | Format-Table Name,Title,Department -auto >c:\Scripts\test2.csv
How can I output into columns?