Hello:
I have array with some info that I gather during script execution (VM name and some parameter). All I need now is to export this data to csv format. I tried
$array | Export-CSV C:\test.csv -NoTypeInformation, but the result file does not have the data from the array, it has only one column "Length" and some numbers (lenth of the individual record). How can I fix it? Thanks!