Brand new to powershell and trying to modify an existing script.
There is a line that exports a csv file.
Get-Devices $accountID | Export-Csv -Path $DevicesCSV -NoTypeInformation -NoClobber
and It does what it is supposed to do and I get a file in the path specified...
What I want to do is make the file look pretty, make it into a table in excel so columns can be sorted. Add formatting, etc.
I do not see any options to do that and need some guidance on how to accomplish this.