I'm running a PowerShell script on remote servers which generates the reports in the form of .csv files. I want to club these csv files as individual worksheets of a single Excel workbook.
However, the remote servers do not have Office installed, thus I cannot use the Com-Object approach.
In addition both 'Microsoft.JET.OLEDB.4.0' and 'Microsoft.ACE.OLEDB.12.0' providers are not registered on the machine.
I cannot download anything, since the script has to be generic and should able to work on any server from the large pool of servers.
Is there some way I can reach my goal or have I hit a dead end?
Or is it possible that I may be able to link the CSV files together in such a way that I may click on one cell, and other CSV file opens up?
Quick help is appreciated.